BotSharp/src/Infrastructure/BotSharp.Abstraction/Messaging/IRichMessage.cs
2024-03-22 01:30:57 -05:00

12 lines
231 B
C#

using BotSharp.Abstraction.Messaging.Enums;
namespace BotSharp.Abstraction.Messaging;
public interface IRichMessage
{
string Text { get; set; }
[JsonPropertyName("rich_type")]
string RichType => RichTypeEnum.Text;
}