Files
BITFALL/Assets/BITKit/Core/DependencyInjection/IServiceRegister.cs

9 lines
107 B
C#
Raw Normal View History

2023-08-23 01:59:40 +08:00
using System;
namespace BITKit
{
public interface IServiceRegister
{
2023-08-27 02:58:19 +08:00
Type BaseType { get; }
2023-08-23 01:59:40 +08:00
}
}