using System; namespace EasyInject.Attributes { /// /// author: spyn /// description: Autowired特性(用于标注这是个可以被依赖注入的字段、属性或构造函数的参数上) /// [AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.Property)] public class AutowiredAttribute : Attribute { public string Name { get; } public AutowiredAttribute(string name) { Name = name; } public AutowiredAttribute() { Name = string.Empty; } } }