2024-03-22 06:30:57 +00:00
|
|
|
using BotSharp.Abstraction.Messaging.Enums;
|
|
|
|
|
|
2023-11-24 23:26:33 +00:00
|
|
|
namespace BotSharp.Abstraction.Messaging;
|
|
|
|
|
|
|
|
|
|
public interface IRichMessage
|
|
|
|
|
{
|
|
|
|
|
string Text { get; set; }
|
2023-12-19 13:16:43 +00:00
|
|
|
|
|
|
|
|
[JsonPropertyName("rich_type")]
|
2024-03-22 06:30:57 +00:00
|
|
|
string RichType => RichTypeEnum.Text;
|
2023-11-24 23:26:33 +00:00
|
|
|
}
|