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
863 B

  1. namespace CustomerPortalV2.Common.Model.AccountModel
  2. {
  3. public class AccountModel
  4. {
  5. }
  6. public class LoginModel
  7. {
  8. public string? UserName { get; set; }
  9. public string? Password { get; set; }
  10. public string? SessionId { get; set; }
  11. public string? IpAddress { get; set; }
  12. public bool RememberMe { get; set; }
  13. }
  14. public class LoginResponse : CommonResponse
  15. {
  16. public string? UserId { get; set; }
  17. public string? UserName { get; set; }
  18. public string? FullName { get; set; }
  19. public string? MobileNumber { get; set; }
  20. public string? Email { get; set; }
  21. public bool RememberMe { get; set; }
  22. public bool ForceChangePassword { get; set; }
  23. public string? GoogleAuthCode { get; set; }
  24. public string? SessionId { get; set; }
  25. }
  26. }