15 lines
290 B
C#
15 lines
290 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace BotSharp.RestApi.Integrations.FacebookMessenger
|
|||
|
|
{
|
|||
|
|
public class WebhookMessageRecipient
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// PAGE_ID
|
|||
|
|
/// </summary>
|
|||
|
|
public String Id { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|