// ReSharper disable InconsistentNaming namespace TeamCity.Docker { using System.Collections.Generic; using System.Runtime.InteropServices; using IoC; internal interface IEnvironment { IReadOnlyDictionary Variables { get; } bool IsOSPlatform(OSPlatform platform); bool HasEnvironmentVariable([NotNull] string name); } }