mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-10 11:06:42 +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; }
|
|
}
|
|
}
|