2025-08-02 18:56:44 +02:00

12 lines
368 B
C#

namespace Liber_Incantamentum.Domain.Entities
{
public class Mage
{
public Guid Id { get; private set; }
public required string Name { get; set; }
public required string Rank { get; set; }
public required string Specialisation { get; set; }
public ICollection<Spell> Spells { get; set; } = new List<Spell>();
}
}