2023-08-20 22:53:53 +00:00
|
|
|
using BotSharp.Plugin.MetaMessenger.MessagingModels;
|
2023-08-04 22:07:44 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Plugin.MetaMessenger.WebhookModels;
|
|
|
|
|
|
|
|
|
|
public class WebhookMessageBody
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("mid")]
|
|
|
|
|
public string Id { get;set; }
|
|
|
|
|
public string Text { get;set; }
|
2023-08-20 22:53:53 +00:00
|
|
|
[JsonPropertyName("quick_reply")]
|
|
|
|
|
public QuickReplyMessageItem QuickReply { get;set; }
|
2023-08-04 22:07:44 +00:00
|
|
|
}
|