Files
mtapi/MTApiService/ITaskExecutor.cs
T

10 lines
167 B
C#
Raw Normal View History

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