namespace Swan.DependencyInjection {
///
/// Registration options for "fluent" API.
///
public sealed class RegisterOptions {
private readonly TypesConcurrentDictionary _registeredTypes;
private readonly DependencyContainer.TypeRegistration _registration;
///
/// Initializes a new instance of the class.
///
/// The registered types.
/// The registration.
public RegisterOptions(TypesConcurrentDictionary registeredTypes, DependencyContainer.TypeRegistration registration) {
this._registeredTypes = registeredTypes;
this._registration = registration;
}
}
}