BotSharp/BotSharp.Platform.Rasa/Models/RasaTrainingEntity.cs
2018-11-19 09:20:59 -06:00

18 lines
381 B
C#

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; }
}
}