mh_frame_sps/APT.Infrastructure.Api/DI/IDependency.cs
2026-04-07 13:47:52 +08:00

10 lines
206 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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