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
@@ -0,0 +1,7 @@
namespace FiscalOS.Core.Identity;
public sealed class RefreshToken : Entity
{
public Guid UserId { get; init; }
public User User { get; init; } = new();
}