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.
27 lines
528 B
27 lines
528 B
using Newtonsoft.Json;
|
|
using System;
|
|
namespace Jd.Api.Domain
|
|
{
|
|
|
|
[Serializable]
|
|
public class CetusRemoteResult : JdObject
|
|
{
|
|
[JsonProperty("errorCode")]
|
|
public string
|
|
|
|
errorCode
|
|
{ get; set; }
|
|
[JsonProperty("message")]
|
|
public string
|
|
|
|
message
|
|
{ get; set; }
|
|
[JsonProperty("isSuccess")]
|
|
public bool
|
|
|
|
isSuccess
|
|
{ get; set; }
|
|
[JsonProperty("data")]
|
|
public BrandVo data { get; set; }
|
|
}
|
|
}
|
|
|