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

18 lines
363 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Adapters.Rasa
{
public class RasaTraningEntity
{
public String EntityType { get; set; }
[JsonProperty("value")]
public String EntityValue { get; set; }
public List<String> Synonyms { get; set; }
}
}