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.
 
 
 

29 lines
1.1 KiB

namespace Common.Model
{
public class UserDetail
{
public string userId { get; set; }
public string firstName { get; set; }
public string middleName { get; set; }
public string lastName { get; set; }
public string nickName { get; set; }
public string mobileNumber { get; set; }
public string email { get; set; }
public string verificationCode { get; set; }
public string verificationCodeExpiryDate { get; set; }
public string createdDate { get; set; }
public string userRoles { get; set; }
public string rewardPoint { get; set; }
public bool active { get; set; }
public bool kyc { get; set; }
public bool verified { get; set; }
public string forgetCode { get; set; }
public string forgetCodeExpiryDate { get; set; }
public string primaryBankName { get; set; }
public string walletNumber { get; set; }
public string availableBalance { get; set; }
public string cmRegistrationId { get; set; }
public string dpUrl { get; set; }
public string yearlyLimit { get; set; }
}
}