using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Newtonsoft.Json; namespace ApiProcess.Models.bet { public class cmsTraficTotal { [JsonProperty("seq")] public string seq { get; set; } [JsonProperty("gameName")] public string gameName { get; set; } [JsonProperty("total")] public string total { 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 cmsTraficTotalList : ResCommnon { [JsonProperty("list")] public cmsTraficTotal[] list { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }