BotSharp/BotSharp.Core/Models/RasaIntentExpressionPart.cs

15 lines
321 B
C#
Raw Normal View History

2018-03-28 22:08:49 +00:00
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; }
}
}