BotSharp/BotSharp.Core/Engines/Rasa/RasaIntentExpressionPart.cs
2018-06-14 07:01:17 -05:00

15 lines
321 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Models
{
public class RasaIntentExpressionPart
{
public int Start { get; set; }
public int End { get; set; }
public String Value { get; set; }
public String Entity { get; set; }
}
}