2022-12-11 22:03:53 +01:00

14 lines
349 B
C#

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