15 lines
278 B
C#
15 lines
278 B
C#
using GethPlugin;
|
|
|
|
namespace CodexContractsPlugin
|
|
{
|
|
public class CodexContractsContainerConfig
|
|
{
|
|
public CodexContractsContainerConfig(IGethNode gethNode)
|
|
{
|
|
GethNode = gethNode;
|
|
}
|
|
|
|
public IGethNode GethNode { get; }
|
|
}
|
|
}
|