mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-07 07:53:05 +00:00
17 lines
473 B
C#
17 lines
473 B
C#
namespace KubernetesWorkflow
|
|
{
|
|
public class Configuration
|
|
{
|
|
public Configuration(string? kubeConfigFile, TimeSpan operationTimeout, TimeSpan retryDelay)
|
|
{
|
|
KubeConfigFile = kubeConfigFile;
|
|
OperationTimeout = operationTimeout;
|
|
RetryDelay = retryDelay;
|
|
}
|
|
|
|
public string? KubeConfigFile { get; }
|
|
public TimeSpan OperationTimeout { get; }
|
|
public TimeSpan RetryDelay { get; }
|
|
}
|
|
}
|