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,13 @@
namespace TimetableDesigner.API.Services.Authentication.Database.Model;
public class Account
{
public long Id { get; set; }
public string Email { get; set; } = null!;
public byte[] Password { get; set; } = null!;
public string PasswordSaltLeft { get; set; } = null!;
public string PasswordSaltRight { get; set; } = null!;
public uint Version { get; set; }
public virtual IEnumerable<RefreshToken> RefreshTokens { get; set; } = new List<RefreshToken>();
}