mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-04 16:24:22 +00:00
17 lines
410 B
C#
17 lines
410 B
C#
using KubernetesWorkflow;
|
|
|
|
namespace DistTestCore.Marketplace
|
|
{
|
|
public class CodexContractsContainerConfig
|
|
{
|
|
public CodexContractsContainerConfig(string bootstrapNodeIp, Port jsonRpcPort)
|
|
{
|
|
BootstrapNodeIp = bootstrapNodeIp;
|
|
JsonRpcPort = jsonRpcPort;
|
|
}
|
|
|
|
public string BootstrapNodeIp { get; }
|
|
public Port JsonRpcPort { get; }
|
|
}
|
|
}
|