// ReSharper disable InconsistentNaming namespace Sony.ChartBot.Entities.MessengerApi { public class Message { public bool is_echo { get; set; } public string mid { get; set; } public int seq { get; set; } public string text { get; set; } public QuickReply quick_reply { get; set; } } }