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; } } }