/src/LinFu.IoC/Configuration/Attributes/InjectAttribute.cs
C# | 12 lines | 8 code | 1 blank | 3 comment | 0 complexity | 6ef93d8a319b350eaedd108da5d713fb MD5 | raw file
1using System; 2 3namespace LinFu.IoC.Configuration 4{ 5 /// <summary> 6 /// The attribute used to mark a property for autoinjection. 7 /// </summary> 8 [AttributeUsage(AttributeTargets.Property | AttributeTargets.Method | AttributeTargets.Field)] 9 public class InjectAttribute : Attribute 10 { 11 } 12}