Role lista hozzáadása

This commit is contained in:
2025-03-18 12:12:12 +01:00
parent 5097757cfb
commit 8c1966ef4c
13 changed files with 1124 additions and 39 deletions
+2
View File
@@ -12,6 +12,8 @@ namespace WorkFlowCheck.DL.Entities
public string UserName { get; set; } = null!;
public string? PasswordHash { get; set; } = null;
public string JwtToken { get; set; } = null!;
public string Token2FA { get; set; } = null!;
public bool Active { get; set; }
public virtual ICollection<UserRole> UserRoles { get; set; } = new List<UserRole>();