11 lines
338 B
C#
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;
|
|
}
|
|
}
|