Files
pyrofetes-backend/PyroFetes/DTO/User/Response/GetUserDto.cs
T
2026-05-28 15:41:07 +01:00

9 lines
218 B
C#

namespace PyroFetes.DTO.User.Response;
public class GetUserDto
{
public int Id { get; set; }
public string? Name { get; set; }
public string? Fonction { get; set; }
public string? Email { get; set; }
}