This commit is contained in:
2025-09-24 19:36:28 +02:00
Unverified
parent 2729199d0a
commit d3d5f8ff08
25 changed files with 723 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
namespace TimetableDesigner.API.Services.Authentication.Database.Model;
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!;
}