19 lines
516 B
C#
19 lines
516 B
C#
|
namespace Logging
|
|||
|
{
|
|||
|
public class ApplicationIds
|
|||
|
{
|
|||
|
public ApplicationIds(string codexId, string gethId, string prometheusId, string codexContractsId)
|
|||
|
{
|
|||
|
CodexId = codexId;
|
|||
|
GethId = gethId;
|
|||
|
PrometheusId = prometheusId;
|
|||
|
CodexContractsId = codexContractsId;
|
|||
|
}
|
|||
|
|
|||
|
public string CodexId { get; }
|
|||
|
public string GethId { get; }
|
|||
|
public string PrometheusId { get; }
|
|||
|
public string CodexContractsId { get; }
|
|||
|
}
|
|||
|
}
|