| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class lotoTraficTotal : ResCommnon
- {
- [JsonProperty("uniqueUsers")]
- public string uniqueUsers { get; set; }
- [JsonProperty("totalTicket")]
- public string totalTicket { get; set; }
- [JsonProperty("totalMoney")]
- public string totalMoney { get; set; }
- [JsonProperty("totalTicketWin")]
- public string totalTicketWin { get; set; }
- [JsonProperty("totalMoneyWin")]
- public string totalMoneyWin { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
-
- }
|