10 lines
102 B
C#
10 lines
102 B
C#
|
using System;
|
||
|
|
||
|
namespace BITKit
|
||
|
{
|
||
|
public interface IServiceRegister
|
||
|
{
|
||
|
Type BaseType { get; }
|
||
|
}
|
||
|
|
||
|
}
|