BotSharp/BotSharp.Core/Models/RasaIntentExpressionPart.cs
haiping008@gmail.com 6c472545c0 Rename project
2018-03-28 17:08:49 -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; }
}
}