forked from anjoy8/Blog.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeChatValidDto.cs
More file actions
37 lines (35 loc) · 921 Bytes
/
WeChatValidDto.cs
File metadata and controls
37 lines (35 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml.Serialization;
namespace Blog.Core.Model.ViewModels
{
/// <summary>
/// 微信验证Dto
/// 作者:胡丁文
/// 时间:2020-4-1 21:34:07
/// </summary>
public class WeChatValidDto
{
/// <summary>
/// 微信公众号唯一标识
/// </summary>
public string publicAccount { get; set; }
/// <summary>
/// 验证成功后返回给微信的字符串
/// </summary>
public string echoStr { get; set; }
/// <summary>
/// 签名
/// </summary>
public string signature { get; set; }
/// <summary>
/// 时间戳
/// </summary>
public string timestamp { get; set; }
/// <summary>
/// 随机数
/// </summary>
public string nonce { get; set; }
}
}