Files

10 lines
167 B
C#
Raw Permalink Normal View History

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