mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-08 16:33:07 +00:00
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; }
|
|
}
|
|
}
|