namespace BotSharp.Abstraction.Messaging.Models.RichContent { public class RichContent { public Recipient Recipient { get; set; } = new Recipient(); /// /// RESPONSE /// [JsonPropertyName("messaging_type")] public string MessagingType => "RESPONSE"; public T Message { get; set; } } }