mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 19:17:48 +00:00
10 lines
167 B
C#
10 lines
167 B
C#
namespace MTApiService
|
|
{
|
|
internal interface ITaskExecutor
|
|
{
|
|
void Execute(MtCommandTask task);
|
|
|
|
int Handle { get; }
|
|
}
|
|
}
|