BITKit/Src/Core/DependencyInjection/IServiceRegister.cs

9 lines
107 B
C#
Raw Normal View History

2023-08-23 01:59:26 +08:00
using System;
namespace BITKit
{
public interface IServiceRegister
{
2023-09-01 14:35:05 +08:00
Type BaseType { get; }
2023-08-23 01:59:26 +08:00
}
}