BotSharp/src/Plugins/BotSharp.Plugin.MetaMessenger/WebhookModels/WebhookMessageBody.cs

14 lines
298 B
C#
Raw Normal View History

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; }
}