2023-12-18 22:38:12 +00:00
|
|
|
namespace BotSharp.Abstraction.Messaging.Models.RichContent;
|
|
|
|
|
|
|
|
|
|
public class QuickReplyMessage : IRichMessage
|
2023-10-27 19:05:18 +00:00
|
|
|
{
|
2023-12-18 22:38:12 +00:00
|
|
|
[JsonPropertyName("rich_type")]
|
|
|
|
|
public string RichType => "quick_reply";
|
|
|
|
|
public string Text { get; set; } = string.Empty;
|
2023-11-08 22:27:42 +00:00
|
|
|
|
2023-12-18 22:38:12 +00:00
|
|
|
[JsonPropertyName("quick_replies")]
|
|
|
|
|
public List<QuickReplyElement> QuickReplies { get; set; } = new List<QuickReplyElement>();
|
2023-10-27 19:05:18 +00:00
|
|
|
}
|