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

7 lines
121 B
C#
Raw Normal View History

2023-06-13 03:27:31 +00:00
namespace BotSharp.Core.Conversations.ViewModels;
public class NewMessageModel
{
2023-06-23 04:43:00 +00:00
public string Text { get; set; }
2023-06-13 03:27:31 +00:00
}