using Newtonsoft.Json;
using System.Collections;
namespace Jiguang.JPush.Model
{
///
/// 自定义消息。
///
///
public class Message
{
///
/// 消息内容本身(必填)。
///
[JsonProperty("msg_content")]
public string Content { get; set; }
[JsonProperty("title")]
public string Title { get; set; }
[JsonProperty("content_type")]
public string ContentType { get; set; }
[JsonProperty("extras")]
public IDictionary Extras { get; set; }
}
}