2018-06-18 22:15:32 +00:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
using System;
|
2018-03-28 22:08:49 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Core.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
public class RasaIntentExpression
|
|
|
|
|
|
{
|
|
|
|
|
|
public RasaIntentExpression()
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String Text { get; set; }
|
|
|
|
|
|
public String Intent { get; set; }
|
2018-06-18 22:15:32 +00:00
|
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
2018-06-18 14:15:54 +00:00
|
|
|
|
public String ContextHash { get; set; }
|
2018-06-18 22:15:32 +00:00
|
|
|
|
|
2018-03-28 22:08:49 +00:00
|
|
|
|
public List<RasaIntentExpressionPart> Entities { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|