16 lines
259 B
C#
16 lines
259 B
C#
|
|
namespace QYZH.InteractiveMagazine.IService;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 单例生命周期标记接口
|
||
|
|
/// </summary>
|
||
|
|
public interface ISingletonDependency
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 瞬时生命周期标记接口
|
||
|
|
/// </summary>
|
||
|
|
public interface ITransientDependency
|
||
|
|
{
|
||
|
|
}
|