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

11 lines
226 B
C#
Raw Normal View History

2023-11-08 22:27:42 +00:00
namespace BotSharp.Abstraction.Messaging.Models.RichContent;
2023-11-27 21:00:26 +00:00
public class TextMessage : RichMessageBase, IRichMessage
{
2023-11-27 21:00:26 +00:00
public string Type => "text";
2023-11-24 23:26:33 +00:00
public TextMessage(string text)
{
Text = text;
}
}