using BotSharp.Plugin.MetaMessenger.Interfaces; using System.Text.Json.Serialization; namespace BotSharp.Plugin.MetaMessenger.MessagingModels; /// /// https://developers.facebook.com/docs/messenger-platform/send-messages/templates /// public class TemplateMessage : IResponseMessage { [JsonPropertyName("attachment")] public AttachmentBody Attachment { get; set; } }