mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-03 14:03:09 +00:00
21 lines
610 B
C#
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; }
|
|
}
|
|
}
|