using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Newtonsoft.Json; namespace ApiProcess.Models.bet { public class cmsTraficDetail { [JsonProperty("seq")] public string seq { get; set; } [JsonProperty("gameName")] public string gameName { get; set; } [JsonProperty("billCode")] public string billCode { get; set; } [JsonProperty("tranCode")] public string tranCode { get; set; } [JsonProperty("date")] public string date { get; set; } [JsonProperty("cusName")] public string cusName { get; set; } [JsonProperty("msisdn")] public string msisdn { get; set; } [JsonProperty("quantity")] public string quantity { get; set; } [JsonProperty("price")] public string price { get; set; } [JsonProperty("moneyBeforeTax")] public string moneyBeforeTax { get; set; } [JsonProperty("tax")] public string tax { get; set; } [JsonProperty("moneyTax")] public string moneyTax { get; set; } [JsonProperty("moneyAfterTax")] public string moneyAfterTax { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class cmsTraficDetailList : ResCommnon { [JsonProperty("list")] public cmsTraficDetail[] list { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }