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

16 lines
410 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi.Integrations.FacebookMessenger
{
public class WebhookTextMessage : IWebhookMessageBody
{
public string Mid { get; set; }
public String Text { get; set; }
[JsonProperty("quick_reply")]
public WebhookMessageQuickReply QuickReply { get; set; }
}
}