步步为盈

28 lines
528 B

3 years ago
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; }
}
}