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

8 lines
162 B
C#
Raw Normal View History

namespace BotSharp.Abstraction.Messaging.Models.RichContent
{
public class TextMessage
{
2023-10-29 01:56:21 +00:00
public string Text { get; set; } = string.Empty;
}
}