namespace BotSharp.Abstraction.Messaging.Models.RichContent; /// /// https://developers.facebook.com/docs/messenger-platform/send-messages/buttons /// public class ElementButton { public string Type { get; set; } [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string Url { get; set; } public string Title { get; set; } [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string Payload { get; set; } }