mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-05 23:13:08 +00:00
20 lines
517 B
C#
20 lines
517 B
C#
|
|
using CodexContractsPlugin;
|
|||
|
|
using GethPlugin;
|
|||
|
|
|
|||
|
|
namespace CodexPlugin
|
|||
|
|
{
|
|||
|
|
public class MarketplaceInitialConfig
|
|||
|
|
{
|
|||
|
|
public MarketplaceInitialConfig(IGethNode gethNode, ICodexContracts codexContracts, bool isValidator)
|
|||
|
|
{
|
|||
|
|
GethNode = gethNode;
|
|||
|
|
CodexContracts = codexContracts;
|
|||
|
|
IsValidator = isValidator;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public IGethNode GethNode { get; }
|
|||
|
|
public ICodexContracts CodexContracts { get; }
|
|||
|
|
public bool IsValidator { get; }
|
|||
|
|
}
|
|||
|
|
}
|