Files
mtapi/MTApiService/ITaskExecutor.cs
T

10 lines
167 B
C#

namespace MTApiService
{
internal interface ITaskExecutor
{
void Execute(MtCommandTask task);
int Handle { get; }
}
}