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

7 lines
124 B
C#
Raw Normal View History

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