10 lines
206 B
C#
10 lines
206 B
C#
|
|
namespace APT.Infrastructure.Api
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 依赖注入接口,只有实现该接口才可以被注册到IoC容器中
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IDependency
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|