diff --git a/LightweightIocContainer/Interfaces/IInjectorInstaller.cs b/LightweightIocContainer/Interfaces/IInjectorInstaller.cs
new file mode 100644
index 0000000..91812d0
--- /dev/null
+++ b/LightweightIocContainer/Interfaces/IInjectorInstaller.cs
@@ -0,0 +1,20 @@
+// Author: simon.gockner
+// Created: 2019-05-20
+// Copyright(c) 2019 SimonG. All Rights Reserved.
+
+using LightweightIocContainer.Interfaces.Registrations;
+
+namespace LightweightIocContainer.Interfaces
+{
+ ///
+ /// The base class for installers
+ ///
+ public interface IInjectorInstaller
+ {
+ ///
+ /// Install the needed s in the given
+ ///
+ /// The current
+ void Install(IInjectorContainer container);
+ }
+}
\ No newline at end of file