mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-06 15:33:11 +00:00
15 lines
267 B
C#
15 lines
267 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AutoClient.Modes
|
|
{
|
|
public interface IMode
|
|
{
|
|
void Start(ICodexInstance instance, int index);
|
|
void Stop();
|
|
}
|
|
}
|