Initial page
Some checks failed
Game Ideas build for PR / build_blazor_app (pull_request) Failing after 30s
Some checks failed
Game Ideas build for PR / build_blazor_app (pull_request) Failing after 30s
This commit is contained in:
7
src/GameIdeas/GameIdeas.Shared/Dto/RoleDto.cs
Normal file
7
src/GameIdeas/GameIdeas.Shared/Dto/RoleDto.cs
Normal 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;
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user