diff --git a/src/Privatezilla/Privatezilla/Helpers/SetttingsBase.cs b/src/Privatezilla/Privatezilla/Helpers/SetttingsBase.cs
deleted file mode 100644
index 08eea15..0000000
--- a/src/Privatezilla/Privatezilla/Helpers/SetttingsBase.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-namespace Privatezilla.Setting
-{
- public abstract class SettingBase
- {
- ///
- /// Name of setting
- ///
- /// The setting name
- public abstract string ID();
-
- ///
- /// Tooltip text of setting
- ///
- /// The setting tooltip
- public abstract string Info();
-
- ///
- /// Checks whether the setting should be applied
- ///
- /// Returns true if the setting should be applied, false otherwise.
- public abstract bool CheckSetting();
-
- ///
- /// Applies the setting
- ///
- /// Returns true if the setting was successfull, false otherwise.
- public abstract bool DoSetting();
-
- ///
- /// Revert the setting
- ///
- /// Returns true if the setting was successfull, false otherwise.
- public abstract bool UndoSetting();
- }
-}
\ No newline at end of file