lksObjGetBetTotalResponse.cs 596 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using Newtonsoft.Json;
  6. namespace ResfullApi.Models
  7. {
  8. [Serializable]
  9. public class lksObjGetBetTotalResponse
  10. {
  11. [JsonProperty("status")]
  12. public string status { get; set; }
  13. [JsonProperty("message")]
  14. public string message { get; set; }
  15. [JsonProperty("listTotalBet")]
  16. public lksObjGetBetTotal[] listTotalBet { get; set; }
  17. public override string ToString()
  18. {
  19. return JsonConvert.SerializeObject(this);
  20. }
  21. }
  22. }