using System.Collections.Immutable; namespace Connected.Configuration.Environment { public interface IEnvironmentServices { ImmutableList Services { get; } ImmutableList ServiceMethods { get; } ImmutableList Arguments { get; } ImmutableList IoCEndpoints { get; } ImmutableList EntityCache { get; } } }