BotSharp/src/Infrastructure/BotSharp.OpenAPI/ViewModels/Conversations/NewMessageModel.cs

12 lines
268 B
C#
Raw Normal View History

2023-08-19 00:15:02 +00:00
namespace BotSharp.OpenAPI.ViewModels.Conversations;
public class NewMessageModel
{
public string Text { get; set; }
2023-09-06 03:19:36 +00:00
/// <summary>
/// Conversation states from input
/// </summary>
public List<string> States { get; set; } = new List<string>();
2023-08-19 00:15:02 +00:00
}