28 lines
523 B
28 lines
523 B
|
4 years ago
|
using System;
|
||
|
|
using System.Xml.Serialization;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
using Jd.Api.Domain;
|
||
|
|
namespace Jd.Api.Domain
|
||
|
|
{
|
||
|
|
|
||
|
|
[Serializable]
|
||
|
|
public class IsvPackSendDmpQueryResultVo:JdObject{
|
||
|
|
[JsonProperty("authoFailurePins")]
|
||
|
|
public string
|
||
|
|
|
||
|
|
authoFailurePins
|
||
|
|
{ get; set; }
|
||
|
|
[JsonProperty("authoPins")]
|
||
|
|
public string
|
||
|
|
|
||
|
|
authoPins
|
||
|
|
{ get; set; }
|
||
|
|
[JsonProperty("authoSuccessPins")]
|
||
|
|
public string
|
||
|
|
|
||
|
|
authoSuccessPins
|
||
|
|
{ get; set; }
|
||
|
|
}
|
||
|
|
}
|