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