betMoney.cs 898 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 betMoneyObj
  9. {
  10. [JsonProperty("id")]
  11. public string id { get; set; }
  12. [JsonProperty("code")]
  13. public string code { get; set; }
  14. [JsonProperty("money")]
  15. public string money { get; set; }
  16. public override string ToString()
  17. {
  18. return JsonConvert.SerializeObject(this);
  19. }
  20. }
  21. public class betMoneyObjList : ResCommnon
  22. {
  23. [JsonProperty("gameId")]
  24. public string gameId { get; set; }
  25. [JsonProperty("listMoney")]
  26. public betMoneyObj[] listMoney { get; set; }
  27. public override string ToString()
  28. {
  29. return JsonConvert.SerializeObject(this);
  30. }
  31. }
  32. }