You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
555 B
25 lines
555 B
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; }
|
|
}
|
|
}
|
|
|