You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
241 B
C#

using DS.Module.Core.Attributes;
namespace DS.Module.Core.Modules;
/// <summary>
/// 实现此接口的类型将自动注册为 ServiceLifetime.Singleton 模式
/// </summary>
[IgnoreDependency]
public interface ISingletonDependency
{
}