BotSharp/BotSharp.NLP/Corpus/ReaderOptions.cs
2018-08-16 17:27:50 -05:00

14 lines
238 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.NLP.Corpus
{
public class ReaderOptions
{
public string DataDir { get; set; }
public string FileName { get; set; }
}
}