using Bot.Rasa.Intents; using System; using System.Collections.Generic; using System.Text; namespace Bot.Rasa.Adapters.Dialogflow { public class DialogflowIntent { public string Id { get; set; } public string Name { get; set; } public bool Auto { get; set; } /// /// Input Contexts /// public List ContextList { get; set; } public List UserSays { get; set; } public List Responses { get; set; } public int Priority { get; set; } public bool WebhookUsed { get; set; } public bool FallbackIntent { get; set; } public List Events { get; set; } } }