BotSharp/BotSharp.RestApi/Integrations/FacebookMessenger/WebhookEventEntry.cs

14 lines
318 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 WebhookEventEntry
{
public string Id { get; set; }
public long Time { get; set; }
public List<WebhookMessage> Messaging { get; set; }
}
}