16 lines
287 B
C#
16 lines
287 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; }
|
|
|
|
public string LabelPrefix { get; set; }
|
|
}
|
|
}
|