3 changed files with 73 additions and 4 deletions
@ -0,0 +1,25 @@ |
|||
using Newtonsoft.Json; |
|||
|
|||
namespace BBWY.Test |
|||
{ |
|||
public class QuanTanSignParam |
|||
{ |
|||
public string appId { get; set; } |
|||
public string appSecret { get; set; } |
|||
|
|||
public string callTime { get; set; } |
|||
|
|||
[JsonProperty(PropertyName = "params")] |
|||
public object _params { get; set; } |
|||
|
|||
public string randomNum { get; set; } |
|||
} |
|||
|
|||
public class QuanTanRequestParam |
|||
{ |
|||
[JsonProperty(PropertyName = "params")] |
|||
public object Params { get; set; } |
|||
|
|||
public string token { get; set; } |
|||
} |
|||
} |
Loading…
Reference in new issue