| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class betResWalletAcount : ResCommnon
- {
- [JsonProperty("Status")]
- public string Status { get; set; }
- [JsonProperty("Balance")]
- public string Balance { get; set; }
- [JsonProperty("CommissionBalance")]
- public string CommissionBalance { get; set; }
- [JsonProperty("ChannelCode")]
- public string ChannelCode { get; set; }
- [JsonProperty("RegisterDate")]
- public string RegisterDate { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
-
- }
-
- }
|