refactor(core): move identity models from API to Core
This commit is contained in:
@@ -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; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user