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; }
}
}