2
0
mirror of synced 2025-01-10 00:25:49 +00:00
2023-09-20 12:55:09 +02:00

21 lines
453 B
C#

namespace KubernetesWorkflow
{
public class StartupConfig
{
private readonly List<object> configs = new List<object>();
public string? NameOverride { get; set; }
public void Add(object config)
{
configs.Add(config);
}
public T Get<T>()
{
var match = configs.Single(c => typeof(T).IsAssignableFrom(c.GetType()));
return (T)match;
}
}
}