BotSharp/src/Plugins/BotSharp.Plugin.MetaMessenger/MessagingModels/TemplateMessage.cs

14 lines
398 B
C#
Raw Normal View History

2023-08-21 01:23:33 +00:00
using BotSharp.Plugin.MetaMessenger.Interfaces;
using System.Text.Json.Serialization;
namespace BotSharp.Plugin.MetaMessenger.MessagingModels;
/// <summary>
/// https://developers.facebook.com/docs/messenger-platform/send-messages/templates
/// </summary>
public class TemplateMessage : IResponseMessage
{
[JsonPropertyName("attachment")]
public AttachmentBody Attachment { get; set; }
}