This commit is contained in:
2025-08-28 16:01:55 +02:00
parent 68b74284c7
commit c7a94893a2
63 changed files with 633 additions and 200 deletions

View File

@@ -2,8 +2,8 @@ using back.DataModels;
namespace back.DTO;
public class UserDto
public class UserDto
{
public string Id { get; set; } = null!;
public ICollection<Role> Roles { get; set; } = [];
public ICollection<RoleDto> Roles { get; set; } = [];
}