BotSharp/BotSharp.NLP/Corpus/ReaderOptions.cs

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; }
}
}