mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-09 08:53:13 +00:00
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; }
|
|
}
|
|
}
|