1
2
3
4
5
6
7
8
9
10
11
12
13
14
| namespace RiskControl.NewService.QiChaCha.YiYuanEntity
| {
| /// <summary>
| /// 请求参数(http请求头Headers)
| /// </summary>
| public class YiYuanHeader
| {
| /// <summary>
| /// token
| /// </summary>
| public string Authorization { get; set; }
|
| }
| }
|
|