BotSharp/BotSharp.Core/Engines/Rasa/RasaTraningEntity.cs

19 lines
384 B
C#
Raw Normal View History

2018-04-02 22:42:11 +00:00
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Adapters.Rasa
{
public class RasaTraningEntity
{
2018-06-18 22:15:32 +00:00
[JsonIgnore]
2018-04-02 22:42:11 +00:00
public String EntityType { get; set; }
[JsonProperty("value")]
public String EntityValue { get; set; }
public List<String> Synonyms { get; set; }
}
}