BotSharp/BotSharp.RestApi/Integrations/FacebookMessenger/WebhookEventEntry.cs
2018-07-18 20:56:17 -05:00

14 lines
318 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi.Integrations.FacebookMessenger
{
public class WebhookEventEntry
{
public string Id { get; set; }
public long Time { get; set; }
public List<WebhookMessage> Messaging { get; set; }
}
}