Stashbox by Peter Csajtai

<PackageReference Include="Stashbox" Version="3.1.0-preview-534" />

 RegistrationConfiguration

Represents the collected configuration options of a registration.
using System; namespace Stashbox.Registration.Fluent { public class RegistrationConfiguration { public Type ServiceType { get; } public Type ImplementationType { get; } internal RegistrationContext Context { get; } internal RegistrationConfiguration(Type serviceType, Type implementationType) { ServiceType = serviceType; ImplementationType = implementationType; Context = RegistrationContext.New(); } } }