BotSharp/src/Plugins/BotSharp.Plugin.MetaMessenger/WebhookModels/WebhookObject.cs
2023-08-04 17:07:44 -05:00

13 lines
281 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Plugin.MetaMessenger.WebhookModels;
public class WebhookObject
{
public string Id { get; set; }
public long Time { get; set; }
public List<WebhookMessage> Messaging { get; set; }
}