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; } }