2025-09-06 19:51:07 +02:00

11 lines
338 B
C#

namespace Liber_Incantamentum.Application.Authentification.DTOs.Response
{
public class UserResponseDto
{
public Guid Id { get; set; }
public string Username { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string Role { get; set; } = string.Empty;
}
}