2
0
mirror of synced 2025-01-20 21:39:10 +00:00

13 lines
237 B
C#

namespace KubernetesWorkflow.Recipe
{
public class CommandOverride
{
public CommandOverride(params string[] command)
{
Command = command;
}
public string[] Command { get; }
}
}