2
0
mirror of synced 2025-01-11 00:56:05 +00:00
2023-10-23 13:36:20 +02:00

26 lines
740 B
C#

using Core;
using KubernetesWorkflow;
namespace GethPlugin
{
public class GethDeployment : IHasContainer
{
public GethDeployment(RunningContainer container, Port discoveryPort, Port httpPort, Port wsPort, GethAccount account, string pubKey)
{
Container = container;
DiscoveryPort = discoveryPort;
HttpPort = httpPort;
WsPort = wsPort;
Account = account;
PubKey = pubKey;
}
public RunningContainer Container { get; }
public Port DiscoveryPort { get; }
public Port HttpPort { get; }
public Port WsPort { get; }
public GethAccount Account { get; }
public string PubKey { get; }
}
}