Initial
This commit is contained in:
@@ -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!;
|
||||
}
|
||||
Reference in New Issue
Block a user