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.

17 lines
556 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. namespace Common.Model.Account
  2. {
  3. public class LoginModel
  4. {
  5. public string ReferralCode { get; set; }
  6. public string Password { get; set; }
  7. public string IpAddress { get; set; }
  8. public string UserDetails { get; set; }
  9. public string AgentUniqueId { get; set; }
  10. }
  11. public class PasswordChangeModel : LoginModel
  12. {
  13. public string NewPassword { get; set; }
  14. public string ConformNewPassword { get; set; }
  15. public string IsForceChangePassword { get; set; }
  16. }
  17. }