2025-08-09 18:09:17 +02:00

14 lines
432 B
C#

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