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

9 lines
213 B
C#
Raw Normal View History

2023-08-04 22:07:44 +00:00
namespace BotSharp.Plugin.MetaMessenger.WebhookModels;
public class WebhookObject
{
public string Id { get; set; }
public long Time { get; set; }
public List<WebhookMessage> Messaging { get; set; }
}