11 lines
193 B
C#
11 lines
193 B
C#
|
|
namespace WcsMain.WcsAttribute.AutoFacAttribute;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 属性注入标记
|
|||
|
|
/// </summary>
|
|||
|
|
[AttributeUsage(AttributeTargets.All)]
|
|||
|
|
public class AutowiredAttribute : Attribute
|
|||
|
|
{
|
|||
|
|
}
|