namespace BotSharp.OpenAPI.ViewModels.Conversations; public class NewMessageModel { public string Text { get; set; } /// /// Conversation states from input /// public List States { get; set; } = new List(); }