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