8 lines
181 B
C#
8 lines
181 B
C#
namespace Pilz.Networking.Api;
|
|
|
|
public interface IApiServer : IApiClient
|
|
{
|
|
void RegisterHandler<T>(T instance) where T : class;
|
|
void RegisterHandler(Delegate handler);
|
|
}
|