BotSharp/BotSharp.NLP/Stem/StemOptions.cs

15 lines
259 B
C#
Raw Normal View History

2018-08-16 04:17:42 +00:00
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; }
}
}