using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class JmServiceResult:JdObject{ [JsonProperty("errorCode")] public int errorCode { get; set; } [JsonProperty("isSuccess")] public bool isSuccess { get; set; } [JsonProperty("errorMsg")] public string errorMsg { get; set; } [JsonProperty("body")] public string body { get; set; } } }