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

17 lines
360 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() { }
public TextMessage(string text)
{
Text = text;
}
}