namespace Liber_Incantamentum.Domain.Entities { public class Spell { public Guid Id { get; private set; } public Spell() { Id = Guid.NewGuid(); } public required string Name { get; set; } public required string Description { get; set; } public required string Type { get; set; } public required DateTime CreationDate { get; set; } public Guid MageId { get; set; } public Mage Mage { get; set; } = null!; } }