using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class PurchaseForJos:JdObject{ [JsonProperty("pin")] public string pin { get; set; } [JsonProperty("endDate")] public DateTime endDate { get; set; } [JsonProperty("itemCode")] public string itemCode { get; set; } [JsonProperty("versionNo")] public int versionNo { get; set; } [JsonProperty("appKey")] public string appKey { get; set; } [JsonProperty("isModule")] public int isModule { get; set; } [JsonProperty("open_id_buyer")] public string openIdBuyer { get; set; } [JsonProperty("xid_buyer")] public string xidBuyer { get; set; } } }