mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-19 02:24:19 +01:00
16 lines
484 B
C#
16 lines
484 B
C#
namespace DotBased.ASP.Auth.Domains.Auth;
|
|
|
|
public class AuthenticationStateModel
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
|
|
public override bool Equals(object? obj)
|
|
{
|
|
if (obj is AuthenticationStateModel authStateModel)
|
|
return authStateModel.Id == Id;
|
|
return false;
|
|
}
|
|
// ReSharper disable once NonReadonlyMemberInGetHashCode
|
|
public override int GetHashCode() => Id.GetHashCode();
|
|
public override string ToString() => Id;
|
|
} |