mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-29 03:27:48 +00:00
9 lines
184 B
C#
Executable File
9 lines
184 B
C#
Executable File
namespace MTApiService
|
|
{
|
|
public interface ICommandManager
|
|
{
|
|
void EnqueueCommandTask(MtCommandTask task);
|
|
MtCommandTask DequeueCommandTask();
|
|
}
|
|
}
|