mh_frame_sps/APT.Infrastructure.Api/DI/IDependency.cs

10 lines
206 B
C#
Raw Permalink Normal View History

2026-04-07 13:47:52 +08:00
namespace APT.Infrastructure.Api
{
/// <summary>
/// 依赖注入接口只有实现该接口才可以被注册到IoC容器中
/// </summary>
public interface IDependency
{
}
}