using System; using System.Collections.Generic; namespace Inspectron.Settings { public interface IDecoratable { /// /// Gets all decorators of the specified type /// Decorator type /// Enumeration of non-null decorators that are of the specified type. The enumeration may be empty. IEnumerable GetDecorators(Type type); } }