/src/LinFu.IoC/Configuration/Attributes/InjectAttribute.cs

http://github.com/philiplaureano/LinFu · C# · 12 lines · 8 code · 1 blank · 3 comment · 0 complexity · 6ef93d8a319b350eaedd108da5d713fb MD5 · raw file

  1. using System;
  2. namespace LinFu.IoC.Configuration
  3. {
  4. /// <summary>
  5. /// The attribute used to mark a property for autoinjection.
  6. /// </summary>
  7. [AttributeUsage(AttributeTargets.Property | AttributeTargets.Method | AttributeTargets.Field)]
  8. public class InjectAttribute : Attribute
  9. {
  10. }
  11. }