mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 21:43:08 +00:00
20 lines
561 B
C#
20 lines
561 B
C#
using CodexContractsPlugin;
|
|
using GethPlugin;
|
|
|
|
namespace CodexPlugin
|
|
{
|
|
public class MarketplaceInitialConfig
|
|
{
|
|
public MarketplaceInitialConfig(MarketplaceSetup marketplaceSetup, IGethNode gethNode, ICodexContracts codexContracts)
|
|
{
|
|
MarketplaceSetup = marketplaceSetup;
|
|
GethNode = gethNode;
|
|
CodexContracts = codexContracts;
|
|
}
|
|
|
|
public MarketplaceSetup MarketplaceSetup { get; }
|
|
public IGethNode GethNode { get; }
|
|
public ICodexContracts CodexContracts { get; }
|
|
}
|
|
}
|