2026-03-16 21:54:44 +01:00
|
|
|
namespace WorkTracker.Services.Auth;
|
|
|
|
|
|
2026-03-17 13:53:33 +01:00
|
|
|
public sealed class AuthUser
|
2026-03-16 21:54:44 +01:00
|
|
|
{
|
|
|
|
|
public string Id { get; init; } = string.Empty;
|
|
|
|
|
|
2026-03-17 20:08:02 +01:00
|
|
|
public string Username { get; init; } = string.Empty;
|
2026-03-16 21:54:44 +01:00
|
|
|
|
2026-03-17 20:08:02 +01:00
|
|
|
public string UsernameNormalized { get; init; } = string.Empty;
|
2026-03-16 21:54:44 +01:00
|
|
|
|
|
|
|
|
public string PasswordHash { get; init; } = string.Empty;
|
2026-03-17 20:08:02 +01:00
|
|
|
|
|
|
|
|
public bool MustChangePassword { get; init; } = false;
|
2026-03-17 13:53:33 +01:00
|
|
|
}
|