RunningDeployment.cs
1 namespace KubernetesWorkflow.Types 2 { 3 public class RunningDeployment 4 { 5 public RunningDeployment(string name, string podLabel) 6 { 7 Name = name; 8 PodLabel = podLabel; 9 } 10 11 public string Name { get; } 12 public string PodLabel { get; } 13 } 14 }