13 lines
341 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: Bean名字属性打在脚本当中标记名字的字段上Bean会以这个名字注册到IoC容器中
/// </summary>
[AttributeUsage(AttributeTargets.Field)]
public class BeanNameAttribute : Attribute
{
}
}