namespace NTERA.EmuEra.Game.EraEmu.Content { abstract class AContentItem { protected AContentItem(string name) { Name = name; } public readonly string Name; public bool Enabled = false; } }