using CommonObj.model; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace CommonObj.lotoModel { public class ticketByUserObj { [JsonProperty("code")] public string code { get; set; } [JsonProperty("money")] public string money { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class responseTicketByUserObj : Response { [JsonProperty("requestId")] public string requestId { get; set; } [JsonProperty("termObj")] public termObj termObj { get; set; } [JsonProperty("isPromotion")] public string isPromotion { get; set; } [JsonProperty("totalMoney")] public string totalMoney { get; set; } [JsonProperty("totalMoneyPromotion")] public string totalMoneyPromotion { get; set; } [JsonProperty("totalMoneyPayment")] public string totalMoneyPayment { get; set; } [JsonProperty("promotionId")] public string promotionId { get; set; } [JsonProperty("transId")] public string transId { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }