using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.Json.Serialization; using System.Threading.Tasks; namespace ApiTools.Core { public class WxmpSubscribMessageNotifyRequestQuery { /// /// 签名 /// public string signature { get; set; } /// /// 时间戳 /// public string timestamp { get; set; } /// /// 随机数 /// public string nonce { get; set; } /// /// 随机字符串 /// public string echostr { get; set; } public string openid { get; set; } public string encrypt_type { get; set; } public string msg_signature { get; set; } } public class WxmpSubscribMessageNotifyRequestBody { public string ToUserName { get; set; } public string Encrypt { get; set; } } }