10 lines
252 B
C#
10 lines
252 B
C#
using mROA.Implementation;
|
|
|
|
namespace mROA;
|
|
|
|
public interface ISerialisationModule
|
|
{
|
|
void HandleIncomingRequest(int clientId, string command);
|
|
void PostResponse(ICommandExecution call);
|
|
void SetExecuteModule(IExecuteModule executeModule);
|
|
} |