2
0
mirror of synced 2025-01-13 18:14:14 +00:00
cs-codex-dist-tests/ProjectPlugins/MetricsPlugin/PrometheusStartupConfig.cs

13 lines
290 B
C#
Raw Permalink Normal View History

2023-09-13 11:25:08 +02:00
namespace MetricsPlugin
{
public class PrometheusStartupConfig
{
public PrometheusStartupConfig(string prometheusConfigBase64)
{
PrometheusConfigBase64 = prometheusConfigBase64;
}
2023-09-13 11:25:08 +02:00
public string PrometheusConfigBase64 { get; }
}
}