using System; namespace YABA.Common.Utils { public static class EnvironmentUtils { public static bool IsDevelopmentEnvironment() => Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT") == "Development"; } }