feat: wip on testing login flows

This commit is contained in:
Stevan Freeborn
2026-02-01 08:07:23 -06:00
parent 725392227e
commit 872eb3e95d
12 changed files with 284 additions and 47 deletions
+3
View File
@@ -3,4 +3,7 @@ namespace FiscalOS.API.Identity;
internal sealed class User
{
public Guid Id { get; init; }
public string Username { get; init; } = string.Empty;
public ICollection<RefreshToken> RefreshTokens { get; init; } = [];
}