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

8 lines
147 B
C#
Raw Normal View History

namespace BotSharp.Abstraction.Messaging.Models.RichContent
{
public class TextMessage
{
public string? Text { get; set; }
}
}