Add dto and services

This commit is contained in:
2025-04-10 01:27:46 +02:00
parent 3537465588
commit 69a3570a60
23 changed files with 283 additions and 10 deletions

View File

@@ -0,0 +1,13 @@
using GameIdeas.Shared.Enum;
namespace GameIdeas.Shared.Dto;
public class UserDto
{
public int? Id { get; set; }
public string? Username { get; set; }
public string? Password { get; set; }
public Role? Role { get; set; }
public IEnumerable<GameDto>? CreationGames { get; set; }
public IEnumerable<GameDto>? ModificationGames { get; set; }
}