| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class betResWalletCheckExist : ResCommnon
- {
- [JsonProperty("createdDate")]
- public string createdDate { get; set; }
-
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
-
- }
-
- }
|