14 lines
321 B
C#
14 lines
321 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YY.Admin.Core
|
|
{
|
|
// 定义生命周期标记接口
|
|
public interface ISingletonDependency { }
|
|
public interface ITransientDependency { }
|
|
public interface IScopedDependency { }
|
|
}
|