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

15 lines
278 B
C#
Raw Normal View History

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