14 lines
349 B
C#
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; }
|
|
}
|
|
}
|