using System; using System.Collections.Generic; using System.Text; namespace BotSharp.Platform.Models.AiResponse { public class AiResponse { public string Speech { get; set; } public string Intent { get; set; } } }