cs-codex-dist-tests/Framework/Logging/ApplicationIds.cs

21 lines
610 B
C#
Raw Normal View History

namespace Logging
{
public class ApplicationIds
{
2023-08-13 08:07:47 +00:00
public ApplicationIds(string codexId, string gethId, string prometheusId, string codexContractsId, string grafanaId)
{
CodexId = codexId;
GethId = gethId;
PrometheusId = prometheusId;
CodexContractsId = codexContractsId;
2023-08-13 08:07:47 +00:00
GrafanaId = grafanaId;
}
public string CodexId { get; }
public string GethId { get; }
public string PrometheusId { get; }
public string CodexContractsId { get; }
2023-08-13 08:07:47 +00:00
public string GrafanaId { get; }
}
}