2
0
mirror of synced 2025-01-12 09:34:40 +00:00
cs-codex-dist-tests/ProjectPlugins/MetricsPlugin/PrometheusStartupConfig.cs
2023-09-20 10:51:47 +02:00

13 lines
290 B
C#

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