wms_serve_m_jingwangchengpin/WmsMobileServe/Annotation/Component.cs

10 lines
203 B
C#
Raw Normal View History

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