cs-codex-dist-tests/DistTestCore/Marketplace/GethStartupConfig.cs

15 lines
397 B
C#

namespace DistTestCore.Marketplace
{
public class GethStartupConfig
{
public GethStartupConfig(bool isBootstrapNode, GethBootstrapNodeInfo bootstrapNode)
{
IsBootstrapNode = isBootstrapNode;
BootstrapNode = bootstrapNode;
}
public bool IsBootstrapNode { get; }
public GethBootstrapNodeInfo BootstrapNode { get; }
}
}