2
0
mirror of synced 2025-01-24 15:28:58 +00:00
cs-codex-dist-tests/DistTestCore/Marketplace/GethCompanionNodeInfo.cs
2023-04-14 09:54:07 +02:00

17 lines
406 B
C#

using KubernetesWorkflow;
namespace DistTestCore.Marketplace
{
public class GethCompanionNodeInfo
{
public GethCompanionNodeInfo(RunningContainer runningContainer, string account)
{
RunningContainer = runningContainer;
Account = account;
}
public RunningContainer RunningContainer { get; }
public string Account { get; }
}
}