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.
 
 
 
 
 

18 lines
556 B

namespace Common.Model.Account
{
public class LoginModel
{
public string ReferralCode { get; set; }
public string Password { get; set; }
public string IpAddress { get; set; }
public string UserDetails { get; set; }
public string AgentUniqueId { get; set; }
}
public class PasswordChangeModel : LoginModel
{
public string NewPassword { get; set; }
public string ConformNewPassword { get; set; }
public string IsForceChangePassword { get; set; }
}
}