Add user manager page (#22)

Reviewed-on: #22
This commit was merged in pull request #22.
This commit is contained in:
2025-04-27 20:49:57 +02:00
parent 033747899b
commit a2e93c9438
63 changed files with 1249 additions and 135 deletions

View File

@@ -4,8 +4,8 @@ namespace GameIdeas.Shared.Dto;
public class UserDto
{
public int? Id { get; set; }
public string? Id { get; set; }
public string? Username { get; set; }
public string? Password { get; set; }
public string? RoleId { get; set; }
public RoleDto? Role { get; set; }
}