/src/LinFu.IoC/Configuration/Attributes/PreprocessorAttribute.cs
http://github.com/philiplaureano/LinFu · C# · 15 lines · 9 code · 1 blank · 5 comment · 0 complexity · a3141374e61e2ed2c9d44473b4293889 MD5 · raw file
- using System;
- using LinFu.IoC.Interfaces;
- namespace LinFu.IoC.Configuration
- {
- /// <summary>
- /// Marks a target type as an <see cref="IPreProcessor" />
- /// instance that can be injected into a
- /// <see cref="IServiceContainer" /> instance.
- /// </summary>
- [AttributeUsage(AttributeTargets.Class)]
- public class PreprocessorAttribute : Attribute
- {
- }
- }