BotSharp/BotSharp.NLP/Stem/StemOptions.cs

15 lines
259 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.NLP.Stem
{
public class StemOptions
{
/// <summary>
/// Regex pattern
/// </summary>
public string Pattern { get; set; }
}
}