Dispenser/DispenserCommon/Ioc/Component.cs

12 lines
296 B
C#
Raw Permalink Normal View History

2024-08-16 07:20:09 +00:00
namespace DispenserCommon.Ioc;
/// <summary>
/// 用于声明当前类需要交由IOC管理
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class Component(Type? type = null, string? name = null) : Attribute
{
public Type? Type => type;
public string? Name => name;
}