15 lines
326 B
C#
15 lines
326 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; set; }
|
|||
|
|
public String Value { get; set; }
|
|||
|
|
public String Entity { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|