betResWalletCheckExist.cs 449 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Newtonsoft.Json;
  6. namespace ApiProcess.Models.bet
  7. {
  8. public class betResWalletCheckExist : ResCommnon
  9. {
  10. [JsonProperty("createdDate")]
  11. public string createdDate { get; set; }
  12. public override string ToString()
  13. {
  14. return JsonConvert.SerializeObject(this);
  15. }
  16. }
  17. }