using System; using System.Collections.Generic; namespace ln.manage { public enum ManagedObjectState { INVALID = -1, // Object is in invalid state (e.g. invalid property values), implies object being disabled DISABLED = 0, // Object is disabled ENABLED = 1 // Object is enabled } }