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

15 lines
457 B
C#
Raw Normal View History

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; }
public string? PostBackUrl { get; set; }
}
}