refactor(core): move identity models from API to Core
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace FiscalOS.Core.Identity;
|
||||
|
||||
public sealed class RefreshToken : Entity
|
||||
{
|
||||
public Guid UserId { get; init; }
|
||||
public User User { get; init; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user