10 lines
No EOL
414 B
C#
10 lines
No EOL
414 B
C#
namespace StalwartSimpleLoginMiddleware.Constants;
|
|
|
|
public class EnvironmentVariable
|
|
{
|
|
public const string MailServerUri = "MAIL_SERVER_URI";
|
|
public const string MailServerApiKey = "MAIL_SERVER_API_KEY";
|
|
public const string PostgresUrl = "POSTGRES_URL";
|
|
public const string PostgresMinPoolSize = "POSTGRES_MIN_POOL_SIZE";
|
|
public const string PostgresMaxPoolSize = "POSTGRES_MAX_POOL_SIZE";
|
|
} |