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

12 lines
244 B
C#
Raw Normal View History

2023-08-04 22:07:44 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Plugin.MetaMessenger.WebhookModels;
public class WebhookRequest
{
public string Object { get;set; }
public List<WebhookObject> Entry { get;set; }
}