BotSharp/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/TextMessage.cs

7 lines
163 B
C#
Raw Normal View History

2023-11-08 22:27:42 +00:00
namespace BotSharp.Abstraction.Messaging.Models.RichContent;
public class TextMessage : IMessageTemplate
{
2023-11-08 22:27:42 +00:00
public string Text { get; set; } = string.Empty;
}