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

16 lines
312 B
C#
Raw Normal View History

2023-09-15 14:27:08 +00:00
using GethPlugin;
using KubernetesWorkflow;
namespace CodexContractsPlugin
{
public class CodexContractsContainerConfig
{
public CodexContractsContainerConfig(IGethNodeInfo gethNode)
{
GethNode = gethNode;
}
public IGethNodeInfo GethNode { get; }
}
}