refactor(core): move identity models from API to Core

This commit is contained in:
Stevan Freeborn
2026-02-03 04:38:40 -06:00
parent e66911810f
commit 7e67e02a68
3 changed files with 10 additions and 12 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace FiscalOS.Core.Identity;
public sealed class User : Entity
{
public string Username { get; init; } = string.Empty;
public string HashedPassword { get; init; } = string.Empty;
public ICollection<RefreshToken> RefreshTokens { get; init; } = [];
}