using System; using System.Collections.Generic; using System.Text; namespace BotSharp.NLP.Tokenize { public class TokenizationOptions { /// /// Regex pattern /// public string Pattern { get; set; } /// /// True if this tokenizer's pattern should be used to find separators between tokens; /// False if this tokenizer's pattern should be used to find the tokens themselves. /// public bool IsGap { get; set; } } }