cs-codex-dist-tests/ProjectPlugins/MetricsPlugin/PrometheusStartupConfig.cs

13 lines
290 B
C#

namespace MetricsPlugin
{
public class PrometheusStartupConfig
{
public PrometheusStartupConfig(string prometheusConfigBase64)
{
PrometheusConfigBase64 = prometheusConfigBase64;
}
public string PrometheusConfigBase64 { get; }
}
}