betResWalletAcount.cs 784 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 betResWalletAcount : ResCommnon
  9. {
  10. [JsonProperty("Status")]
  11. public string Status { get; set; }
  12. [JsonProperty("Balance")]
  13. public string Balance { get; set; }
  14. [JsonProperty("CommissionBalance")]
  15. public string CommissionBalance { get; set; }
  16. [JsonProperty("ChannelCode")]
  17. public string ChannelCode { get; set; }
  18. [JsonProperty("RegisterDate")]
  19. public string RegisterDate { get; set; }
  20. public override string ToString()
  21. {
  22. return JsonConvert.SerializeObject(this);
  23. }
  24. }
  25. }