Initial page
Some checks failed
Game Ideas build for PR / build_blazor_app (pull_request) Failing after 30s

This commit is contained in:
2025-04-21 21:16:12 +02:00
parent 9d0d5ec599
commit cec1d551af
12 changed files with 94 additions and 22 deletions

View File

@@ -0,0 +1,7 @@
namespace GameIdeas.Shared.Dto;
public class RoleDto
{
public string Id { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
}

View File

@@ -7,5 +7,5 @@ public class UserDto
public int? Id { get; set; }
public string? Username { get; set; }
public string? Password { get; set; }
public string? RoleId { get; set; }
public RoleDto? Role { get; set; }
}