ln.manage/ManagedObject.cs

13 lines
342 B
C#
Raw Normal View History

2020-01-07 08:48:45 +01:00
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
}
}