11 lines
296 B
C#

namespace Liber_Incantamentum.Application.DTOs.General
{
public class MageDto
{
public Guid Id { get; set; }
public required string Name { get; set; }
public required string Rank { get; set; }
public required string Specialisation { get; set; }
}
}