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.
26 lines
571 B
26 lines
571 B
2 years ago
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace QuanTan.SDK.Model.Request
|
||
|
{
|
||
|
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; }
|
||
|
}
|
||
|
}
|