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

12 lines
301 B
C#
Raw Normal View History

2023-08-21 01:23:33 +00:00
using System.Text.Json.Serialization;
namespace BotSharp.Plugin.MetaMessenger.MessagingModels;
public class AttachementPayload
{
[JsonPropertyName("template_type")]
public string TemplateType { get; set; }
public string Text { get; set; }
public ButtonItem[] Buttons { get; set; }
}