Files
fiscalos/src/FiscalOS.Core/Identity/User.cs
T

9 lines
261 B
C#
Raw Normal View History

namespace FiscalOS.Core.Identity;
2026-02-01 06:13:08 -06:00
public sealed class User : Entity
2026-02-01 06:13:08 -06:00
{
2026-02-01 08:07:23 -06:00
public string Username { get; init; } = string.Empty;
public string HashedPassword { get; init; } = string.Empty;
2026-02-01 08:07:23 -06:00
public ICollection<RefreshToken> RefreshTokens { get; init; } = [];
2026-02-01 06:13:08 -06:00
}