14 lines
No EOL
373 B
C#
14 lines
No EOL
373 B
C#
namespace WorkTracker.Services.Auth;
|
|
|
|
public sealed class AuthUser
|
|
{
|
|
public string Id { get; init; } = string.Empty;
|
|
|
|
public string Username { get; init; } = string.Empty;
|
|
|
|
public string UsernameNormalized { get; init; } = string.Empty;
|
|
|
|
public string PasswordHash { get; init; } = string.Empty;
|
|
|
|
public bool MustChangePassword { get; init; } = false;
|
|
} |