ApplicationIds.cs
1 namespace Logging 2 { 3 public class ApplicationIds 4 { 5 public ApplicationIds(string codexId, string gethId, string prometheusId, string codexContractsId, string grafanaId) 6 { 7 CodexId = codexId; 8 GethId = gethId; 9 PrometheusId = prometheusId; 10 CodexContractsId = codexContractsId; 11 GrafanaId = grafanaId; 12 } 13 14 public string CodexId { get; } 15 public string GethId { get; } 16 public string PrometheusId { get; } 17 public string CodexContractsId { get; } 18 public string GrafanaId { get; } 19 } 20 }