2026-02-01 06:13:08 -06:00
|
|
|
namespace FiscalOS.API.Identity;
|
|
|
|
|
|
|
|
|
|
internal sealed class RefreshToken
|
|
|
|
|
{
|
|
|
|
|
public Guid Id { get; init; }
|
2026-02-01 08:07:23 -06:00
|
|
|
|
|
|
|
|
public Guid UserId { get; init; }
|
|
|
|
|
public User User { get; init; } = new();
|
2026-02-01 06:13:08 -06:00
|
|
|
}
|