You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.1 KiB

1 year ago
  1. namespace Common.Model
  2. {
  3. public class UserDetail
  4. {
  5. public string userId { get; set; }
  6. public string firstName { get; set; }
  7. public string middleName { get; set; }
  8. public string lastName { get; set; }
  9. public string nickName { get; set; }
  10. public string mobileNumber { get; set; }
  11. public string email { get; set; }
  12. public string verificationCode { get; set; }
  13. public string verificationCodeExpiryDate { get; set; }
  14. public string createdDate { get; set; }
  15. public string userRoles { get; set; }
  16. public string rewardPoint { get; set; }
  17. public bool active { get; set; }
  18. public bool kyc { get; set; }
  19. public bool verified { get; set; }
  20. public string forgetCode { get; set; }
  21. public string forgetCodeExpiryDate { get; set; }
  22. public string primaryBankName { get; set; }
  23. public string walletNumber { get; set; }
  24. public string availableBalance { get; set; }
  25. public string cmRegistrationId { get; set; }
  26. public string dpUrl { get; set; }
  27. public string yearlyLimit { get; set; }
  28. }
  29. }