lotoTraficTotal.cs 792 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Newtonsoft.Json;
  6. namespace ApiProcess.Models.bet
  7. {
  8. public class lotoTraficTotal : ResCommnon
  9. {
  10. [JsonProperty("uniqueUsers")]
  11. public string uniqueUsers { get; set; }
  12. [JsonProperty("totalTicket")]
  13. public string totalTicket { get; set; }
  14. [JsonProperty("totalMoney")]
  15. public string totalMoney { get; set; }
  16. [JsonProperty("totalTicketWin")]
  17. public string totalTicketWin { get; set; }
  18. [JsonProperty("totalMoneyWin")]
  19. public string totalMoneyWin { get; set; }
  20. public override string ToString()
  21. {
  22. return JsonConvert.SerializeObject(this);
  23. }
  24. }
  25. }