BotSharp/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/TextMessage.cs
2023-11-08 16:27:42 -06:00

7 lines
163 B
C#

namespace BotSharp.Abstraction.Messaging.Models.RichContent;
public class TextMessage : IMessageTemplate
{
public string Text { get; set; } = string.Empty;
}