Get users and role and add user row
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 57s

This commit is contained in:
2025-04-26 21:03:58 +02:00
parent 851f0b5af1
commit 065de43d6c
19 changed files with 325 additions and 10 deletions

View File

@@ -4,7 +4,7 @@ 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 RoleDto? Role { get; set; }