using Liber_Incantamentum.Application.DTOs.Spell; namespace Liber_Incantamentum.Application.DTOs.Mage { 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; } public ICollection Spells { get; set; } = new List(); } }