BotSharp/src/Infrastructure/BotSharp.Core/Conversations/ViewModels/NewMessageModel.cs
2023-06-26 18:08:24 -05:00

7 lines
121 B
C#

namespace BotSharp.Core.Conversations.ViewModels;
public class NewMessageModel
{
public string Text { get; set; }
}