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