mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-10 11:06:42 +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; }
|
|||
|
}
|
|||
|
}
|