BotSharp/BotSharp.Platform.Rasa/Models/RasaTrainingEntity.cs

18 lines
381 B
C#
Raw Normal View History

2018-11-19 15:20:59 +00:00
using BotSharp.Core.Engines;
using BotSharp.Platform.Models;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Rasa.Models
{
public sealed class RasaTrainingEntity
{
[JsonProperty("value")]
public String Entity { get; set; }
public List<string> Synonyms { get; set; }
}
}