22 lines
600 B
C#
22 lines
600 B
C#
// ***********************************************************************
|
|
// <copyright file="EnvironmentVariables.cs">
|
|
// AgileWebs
|
|
// </copyright>
|
|
// ***********************************************************************
|
|
|
|
namespace Core.Cerberos.Adapters.Common.Constants
|
|
{
|
|
/// <summary>
|
|
/// Constants of the environment variables for this service.
|
|
/// </summary>
|
|
public static class EnvironmentVariables
|
|
{
|
|
/// <summary>
|
|
/// The stage environment vriable.
|
|
/// </summary>
|
|
public const string Stage = "ASPNETCORE_ENVIRONMENT";
|
|
}
|
|
}
|
|
|
|
|