| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class betResWalletCus
- {
- [JsonProperty("Idsn")]
- public string Idsn { get; set; }
- [JsonProperty("Name")]
- public string Name { get; set; }
- [JsonProperty("IdNo")]
- public string IdNo { get; set; }
- [JsonProperty("IdType")]
- public string IdType { get; set; }
- [JsonProperty("Address")]
- public string Address { get; set; }
- [JsonProperty("Gender")]
- public string Gender { get; set; }
- [JsonProperty("DoB")]
- public string DoB { get; set; }
- [JsonProperty("Balance")]
- public string Balance { get; set; }
- [JsonProperty("ActiveDate")]
- public string ActiveDate { get; set; }
- [JsonProperty("RefId")]
- public string RefId { get; set; }
- [JsonProperty("CustomerCode")]
- public string CustomerCode { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
-
- }
- public class betResWalletCusExten : ResCommnon
- {
-
-
- [JsonProperty("custormer")]
- public betResWalletCus custormer { get; set; }
-
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|