BotSharp/BotSharp.Core/Engines/TrainingIntentExpressionPart.cs
2018-08-15 06:34:27 -05:00

15 lines
353 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines
{
public class TrainingIntentExpressionPart
{
public int Start { get; set; }
public int End { get { return Start + Value.Length; } }
public String Value { get; set; }
public String Entity { get; set; }
}
}