mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-05-26 11:09:32 +00:00
21 lines
666 B
C#
21 lines
666 B
C#
namespace Logging
|
|
{
|
|
public class ApplicationIds
|
|
{
|
|
public ApplicationIds(string logosStorageId, string gethId, string prometheusId, string logosStorageContractsId, string grafanaId)
|
|
{
|
|
LogosStorageId = logosStorageId;
|
|
GethId = gethId;
|
|
PrometheusId = prometheusId;
|
|
LogosStorageContractsId = logosStorageContractsId;
|
|
GrafanaId = grafanaId;
|
|
}
|
|
|
|
public string LogosStorageId { get; }
|
|
public string GethId { get; }
|
|
public string PrometheusId { get; }
|
|
public string LogosStorageContractsId { get; }
|
|
public string GrafanaId { get; }
|
|
}
|
|
}
|