BotSharp/BotSharp.Core/Models/TrainingIntentExpressionPart.cs

21 lines
428 B
C#

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