UserRole javítása

This commit is contained in:
2025-03-28 13:56:56 +01:00
parent ddc898cc2e
commit 148ea094ce
8 changed files with 135 additions and 10 deletions
+1 -1
View File
@@ -14,6 +14,6 @@ namespace WorkFlowCheck.Common.DTO
public string UserName { get;set; } = null!;
public string Password { get; set; }
public string JwtToken { get; set; } = null!;
public required ICollection<RoleDTO> RoleDTO { get; set; } = new List<RoleDTO>();
public ICollection<RoleDTO>? RoleDTO { get; set; } = new List<RoleDTO>();
}
}