14 lines
426 B
C#
14 lines
426 B
C#
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<SpellDto> Spells { get; set; } = new List<SpellDto>();
|
|
}
|
|
}
|