BotSharp/BotSharp.RestApi/Integrations/FacebookMessenger/WebhookTextMessage.cs

16 lines
410 B
C#
Raw Normal View History

2018-07-19 01:56:17 +00:00
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; }
}
}