/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

  1. using System;
  2. using LinFu.IoC.Interfaces;
  3. namespace LinFu.IoC.Configuration
  4. {
  5. /// <summary>
  6. /// Marks a target type as an <see cref="IPostProcessor" />
  7. /// instance that can be injected into a
  8. /// <see cref="IServiceContainer" /> instance.
  9. /// </summary>
  10. [AttributeUsage(AttributeTargets.Class)]
  11. public class PostProcessorAttribute : Attribute
  12. {
  13. }
  14. }