Files

9 lines
184 B
C#
Raw Permalink Normal View History

namespace MTApiService
2014-10-31 09:05:52 +02:00
{
public interface ICommandManager
{
void EnqueueCommandTask(MtCommandTask task);
MtCommandTask DequeueCommandTask();
2014-10-31 09:05:52 +02:00
}
}