22 lines
		
	
	
		
			596 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			596 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| // ***********************************************************************
 | |
| // <copyright file="EnvironmentVariables.cs">
 | |
| //     Heath
 | |
| // </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";
 | |
|     }
 | |
| }
 | |
| 
 | |
| 
 | 
