| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class cmsTotalByTerm
- {
- [JsonProperty("randomId")]
- public string randomId { get; set; }
- [JsonProperty("startDate")]
- public string startDate { get; set; }
- [JsonProperty("endDate")]
- public string endDate { get; set; }
- [JsonProperty("result")]
- public string result { get; set; }
- [JsonProperty("status")]
- public string status { get; set; }
- [JsonProperty("money")]
- public string money { get; set; }
- [JsonProperty("moneyWin")]
- public string moneyWin { get; set; }
- [JsonProperty("rate")]
- public string rate { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class cmsTotalByTermList : ResCommnon
- {
-
- [JsonProperty("list")]
- public cmsTotalByTerm[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|