/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
- using System;
- namespace LinFu.IoC.Configuration
- {
- /// <summary>
- /// The attribute used to mark a property for autoinjection.
- /// </summary>
- [AttributeUsage(AttributeTargets.Property | AttributeTargets.Method | AttributeTargets.Field)]
- public class InjectAttribute : Attribute
- {
- }
- }