2
0
mirror of synced 2025-01-12 09:34:40 +00:00
cs-codex-dist-tests/Logging/ApplicationIds.cs
2023-08-13 10:07:47 +02:00

21 lines
610 B
C#

namespace Logging
{
public class ApplicationIds
{
public ApplicationIds(string codexId, string gethId, string prometheusId, string codexContractsId, string grafanaId)
{
CodexId = codexId;
GethId = gethId;
PrometheusId = prometheusId;
CodexContractsId = codexContractsId;
GrafanaId = grafanaId;
}
public string CodexId { get; }
public string GethId { get; }
public string PrometheusId { get; }
public string CodexContractsId { get; }
public string GrafanaId { get; }
}
}