using System;
using System.Collections.Generic;
using System.Text;
using System.Xml.Serialization;
namespace Tiobon.Core.Model.ViewModels
{
///
/// 微信验证Dto
/// 作者:胡丁文
/// 时间:2020-4-1 21:34:07
///
public class WeChatValidDto
{
///
/// 微信公众号唯一标识
///
public string publicAccount { get; set; }
///
/// 验证成功后返回给微信的字符串
///
public string echoStr { get; set; }
///
/// 签名
///
public string signature { get; set; }
///
/// 时间戳
///
public string timestamp { get; set; }
///
/// 随机数
///
public string nonce { get; set; }
}
}