wms_serve_m_jinwangbancai/WmsMobileServe/Annotation/Component.cs

10 lines
203 B
C#
Raw Permalink Normal View History

namespace WmsMobileServe.Annotation;
/// <summary>
/// 特性,标记一个类需要被注入
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class ComponentAttribute : Attribute
{
}