using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class ReassignOrder:JdObject{ [JsonProperty("orderNo")] public string orderNo { get; set; } [JsonProperty("reassignInfo")] public int reassignInfo { get; set; } [JsonProperty("userMobile")] public string userMobile { get; set; } [JsonProperty("userName")] public string userName { get; set; } } }