BotSharp/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/TextMessage.cs
2024-05-08 11:47:21 -05:00

15 lines
330 B
C#

namespace BotSharp.Abstraction.Messaging.Models.RichContent;
public class TextMessage : IRichMessage
{
[JsonPropertyName("rich_type")]
public string RichType => RichTypeEnum.Text;
[Translate]
public string Text { get; set; } = string.Empty;
public TextMessage(string text)
{
Text = text;
}
}