13 lines
237 B
C#
13 lines
237 B
C#
|
namespace KubernetesWorkflow.Recipe
|
|||
|
{
|
|||
|
public class CommandOverride
|
|||
|
{
|
|||
|
public CommandOverride(params string[] command)
|
|||
|
{
|
|||
|
Command = command;
|
|||
|
}
|
|||
|
|
|||
|
public string[] Command { get; }
|
|||
|
}
|
|||
|
}
|