2026-01-11 02:30:08 +01:00
|
|
|
|
namespace TimetableDesigner.Backend.Services.Authentication.Database.Model;
|
2025-09-24 19:36:28 +02:00
|
|
|
|
|
|
|
|
|
|
public class RefreshToken
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid Token { get; set; }
|
|
|
|
|
|
public long AccountId { get; set; }
|
|
|
|
|
|
public DateTimeOffset ExpirationDate { get; set; }
|
|
|
|
|
|
public bool IsExtendable { get; set; }
|
|
|
|
|
|
public uint Version { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public virtual Account Account { get; set; } = null!;
|
|
|
|
|
|
}
|