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.
21 lines
462 B
21 lines
462 B
3 years ago
|
using System;
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace Jd.ACES.Common
|
||
|
{
|
||
|
|
||
|
public class JosMasterKeyGetResponse
|
||
|
{
|
||
|
[JsonProperty("jingdong_jos_master_key_get_responce")]
|
||
|
public MasterKeyResponseData getResponse { get; set; }
|
||
|
}
|
||
|
public class MasterKeyResponseData
|
||
|
{
|
||
|
[JsonProperty("response")]
|
||
|
public KeyResponse keyResponse { get; set; }
|
||
|
|
||
|
[JsonProperty("code")]
|
||
|
public String code { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|