using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ApiTools.Core { public class WxmpSubscribMessageNotifyRequestQuery { /// /// 签名 /// [JsonProperty("signature")] public string Signature { get; set; } /// /// 时间戳 /// [JsonProperty("timestamp")] public string Timestamp { get; set; } /// /// 随机数 /// [JsonProperty("nonce")] public string Nonce { get; set; } /// /// 随机字符串 /// [JsonProperty("echostr")] public string Echostr { get; set; } } }