LoginResult.cs 434 B

1234567891011121314151617
  1. using System.Security.Claims;
  2. using ShwasherSys.Authorization.Users;
  3. using IwbZero.Authorization;
  4. namespace ShwasherSys.Authorization
  5. {
  6. public class LoginResult: IwbLoginResult<SysUser>
  7. {
  8. public LoginResult(AbpLoginResultType result, SysUser user = null) : base(result, user)
  9. {
  10. }
  11. public LoginResult(SysUser user, ClaimsIdentity identity) : base(user, identity)
  12. {
  13. }
  14. }
  15. }