mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 13:33:07 +00:00
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; }
|
|
}
|
|
}
|