There should be an easy way to check if a specific type is decorated. Notice that this has to check the full hierarchy and not just the current type. Api could be a simple extension method: ```csharp bool isMyClassDecorated = typof(MyClass).IsDecorated(); ```