24 lines
619 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace EasyInject.Attributes
{
/// <summary>
/// author: spyn
/// description: Autowired特性用于标注这是个可以被依赖注入的字段、属性或构造函数的参数上
/// </summary>
[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;
}
}
}