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

16 lines
404 B
C#
Raw Normal View History

namespace BotSharp.Abstraction.Messaging.Models.RichContent
{
public class QuickReplyElement
{
[JsonPropertyName("content_type")]
2023-11-24 23:26:33 +00:00
public string ContentType { get; set; } = "text";
public string Title { get; set; } = string.Empty;
public string? Payload { get; set; }
2023-11-24 23:26:33 +00:00
[JsonPropertyName("image_url")]
public string? ImageUrl { get; set; }
}
}