namespace TACO.Thingies { using System; public abstract class ElectricThingie : Thingie { private bool mOn = false; public ElectricThingie(string id) : base(id) { } public bool On { get { return mOn; } set { mOn = value; } } } }