using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace BotSharp.Platform.Rasa.Models { public class RasaTrainingData { [JsonProperty("common_examples")] public List UserSays { get; set; } [JsonProperty("entity_synonyms")] public List Entities { get; set; } [JsonProperty("regex_features")] public List Regex { get; set; } } }