From 46a93000937cbc865e696d6512b87813152a0af4 Mon Sep 17 00:00:00 2001 From: Belim Date: Sun, 20 Sep 2020 19:17:52 +0200 Subject: [PATCH] Delete SetttingsBase.cs --- .../Privatezilla/Helpers/SetttingsBase.cs | 35 ------------------- 1 file changed, 35 deletions(-) delete mode 100644 src/Privatezilla/Privatezilla/Helpers/SetttingsBase.cs 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