cs-codex-dist-tests/CodexContractsPlugin/CodexContractsContainerConf...

16 lines
312 B
C#

using GethPlugin;
using KubernetesWorkflow;
namespace CodexContractsPlugin
{
public class CodexContractsContainerConfig
{
public CodexContractsContainerConfig(IGethNodeInfo gethNode)
{
GethNode = gethNode;
}
public IGethNodeInfo GethNode { get; }
}
}