mirror of
https://github.com/vacp2p/cs-codex-dist-tests.git
synced 2025-02-24 08:18:20 +00:00
13 lines
297 B
C#
13 lines
297 B
C#
|
namespace DistTestCore.Metrics
|
|||
|
{
|
|||
|
public class PrometheusStartupConfig
|
|||
|
{
|
|||
|
public PrometheusStartupConfig(string prometheusConfigBase64)
|
|||
|
{
|
|||
|
PrometheusConfigBase64 = prometheusConfigBase64;
|
|||
|
}
|
|||
|
|
|||
|
public string PrometheusConfigBase64 { get; }
|
|||
|
}
|
|||
|
}
|