| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using Newtonsoft.Json;
- namespace ResfullApi.Models
- {
- // 0=chua chọn,2=dang chọn, 3=da chon xong
- [Serializable]
- public class lksObjGetBetTotal
- {
- [JsonProperty("date")]
- public string date { get; set; }
- [JsonProperty("betWin")]
- public string betWin { get; set; }
- [JsonProperty("betLost")]
- public string betLost { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|