using BotSharp.Core.Intents; using System; using System.Collections.Generic; using System.Text; namespace BotSharp.Core.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; } } }