| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- 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);
- }
- }
- }
|