BotSharp/BotSharp.RestApi/Integrations/FacebookMessenger/WebhookEvent.cs

15 lines
279 B
C#
Raw Normal View History

2018-07-19 01:56:17 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi.Integrations.FacebookMessenger
{
public class WebhookEvent
{
public string Object { get; set; }
public List<WebhookEventEntry> Entry { get; set; }
}
}