wcs_server_kate_suzhou/WcsMain/WcsAttribute/AutoFacAttribute/ServiceAttribute.cs

11 lines
238 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.

namespace WcsMain.WcsAttribute.AutoFacAttribute;
/// <summary>
/// 服务特性标记添加该特性的类会被IOC容器接管
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class ServiceAttribute : Attribute
{
}