ContainerRecipePortMapEntry.cs
1 using KubernetesWorkflow.Recipe; 2 3 namespace KubernetesWorkflow.Types 4 { 5 public class ContainerRecipePortMapEntry 6 { 7 public ContainerRecipePortMapEntry(int recipeNumber, Port[] ports) 8 { 9 RecipeNumber = recipeNumber; 10 Ports = ports; 11 } 12 13 public int RecipeNumber { get; } 14 public Port[] Ports { get; } 15 } 16 }