BotSharp/BotSharp.NLP/Tag/TagOptions.cs

21 lines
419 B
C#
Raw Normal View History

2018-08-16 22:27:50 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.NLP.Tag
{
public class TagOptions
{
/// <summary>
/// Display some stats, if requested.
/// </summary>
public bool Verbose { get; set; }
/// <summary>
/// Default Tag
/// Used in DefaultTagger
/// </summary>
public string Tag { get; set; }
}
}