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

14 lines
364 B
C#
Raw Normal View History

2023-08-21 01:23:33 +00:00
namespace BotSharp.Plugin.MetaMessenger.MessagingModels;
/// <summary>
/// https://developers.facebook.com/docs/messenger-platform/send-messages/templates
/// </summary>
2023-11-24 23:26:33 +00:00
public class AttachmentMessage : IRichMessage
2023-08-21 01:23:33 +00:00
{
2023-11-24 23:26:33 +00:00
[JsonIgnore]
public string Text { get; set; }
2023-08-21 01:23:33 +00:00
[JsonPropertyName("attachment")]
public AttachmentBody Attachment { get; set; }
}