mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-12 02:13:12 +00:00
15 lines
305 B
C#
15 lines
305 B
C#
using Utils;
|
|
|
|
namespace CodexPlugin
|
|
{
|
|
public interface ICodexInstance
|
|
{
|
|
string Name { get; }
|
|
string ImageName { get; }
|
|
DateTime StartUtc { get; }
|
|
Address DiscoveryEndpoint { get; }
|
|
Address ApiEndpoint { get; }
|
|
void DeleteDataDirFolder();
|
|
}
|
|
}
|