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
609 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 AgentPlatform { get; set; }
  10. public string AgentPlatformId { get; set; }
  11. }
  12. public class PasswordChangeModel : LoginModel
  13. {
  14. public string NewPassword { get; set; }
  15. public string ConformNewPassword { get; set; }
  16. public string IsForceChangePassword { get; set; }
  17. }
  18. }