namespace JNPF.Extras.Thirdparty.WeChat.Internal;
///
/// 公众号事件.
///
public class WechatMPEvent
{
///
/// 签名.
///
public string signature { get; set; }
///
/// 时间戳.
///
public string timestamp { get; set; }
///
/// nonce.
///
public string nonce { get; set; }
///
/// 算出的值.
///
public string echostr { get; set; }
///
/// 开发者微信号.
///
public string ToUserName { get; set; }
///
/// 发送方帐号(一个OpenID).
///
public string FromUserName { get; set; }
///
/// 消息创建时间 (整型).
///
public long CreateTime { get; set; }
///
/// 消息类型,event.
///
public string MsgType { get; set; }
///
/// 事件类型,subscribe(订阅)、unsubscribe(取消订阅).
///
public string Event { get; set; }
}