Files
messengerapi.Broker/code/MessengerBroker.Configuration/Sources/Environment/Constants.EnvironmentVariables.cs
2025-07-05 18:02:25 +02:00

18 lines
853 B
C#

namespace MessengerBroker.Configuration.Sources.Environment
{
public class Constants
{
public static class EnvironmentVariables
{
public const string API_PERSISTENCE_TYPE = nameof(API_PERSISTENCE_TYPE);
public const string API_SQL_CONNECTIONSTRING = nameof(API_SQL_CONNECTIONSTRING);
public const string API_NPG_CONNECTIONSTRING = nameof(API_NPG_CONNECTIONSTRING);
public const string BROKER_ID = nameof(BROKER_ID);
public const string MASTER_SERVERS = nameof(MASTER_SERVERS);
public const string SLAVE_SERVERS = nameof(SLAVE_SERVERS);
public const string HOUSEKEEPING_ENABLED = nameof(HOUSEKEEPING_ENABLED);
public const string HOUSEKEEPING_MESSAGE_AGE_IN_MINUTES = nameof(HOUSEKEEPING_MESSAGE_AGE_IN_MINUTES);
}
}
}