12 lines
368 B
C#
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>();
|
|
}
|
|
}
|