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
253 B
C#

12 months ago
using DS.Module.Core.Attributes;
namespace DS.Module.Core.Modules;
/// <summary>
/// 实现此接口的类型将自动注册为<see cref="ServiceLifetime.Transient"/>模式
/// </summary>
[IgnoreDependency]
public interface ITransientDependency
{
}