2
0
mirror of synced 2025-01-12 09:34:40 +00:00

21 lines
453 B
C#
Raw Normal View History

2023-04-12 13:53:55 +02:00
namespace KubernetesWorkflow
{
public class StartupConfig
{
private readonly List<object> configs = new List<object>();
public string? NameOverride { get; set; }
2023-04-12 13:53:55 +02:00
public void Add(object config)
{
configs.Add(config);
}
public T Get<T>()
{
2023-04-12 16:12:04 +02:00
var match = configs.Single(c => typeof(T).IsAssignableFrom(c.GetType()));
2023-04-12 13:53:55 +02:00
return (T)match;
}
}
}