2023-10-27 19:05:18 +00:00
|
|
|
|
|
|
|
|
namespace BotSharp.Abstraction.Messaging.Models.RichContent
|
|
|
|
|
{
|
|
|
|
|
public class QuickReplyElement
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("content_type")]
|
|
|
|
|
public string ContentType { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
public string? Payload { get; set; }
|
|
|
|
|
[JsonPropertyName("image_url")]
|
|
|
|
|
public string? ImageUrl { get; set; }
|
2023-10-27 22:16:53 +00:00
|
|
|
public string? PostBackUrl { get; set; }
|
2023-10-27 19:05:18 +00:00
|
|
|
}
|
|
|
|
|
}
|