using System; using System.Collections.Generic; using System.Text; namespace ACE.Entity.Enum { public enum PropertyInheritanceType { ClassOnly = 0x0, InstanceOnly = 0x1, Either = 0x2, } }