public AutoUploaderSettingsPersistor(AutoUploaderSettings settings, string path)
        {
            LOGGER.Debug($"Creating autouploader settings persistor for path '{path}'");

            Path     = path;
            Settings = settings;
        }
        public ReleaseNotesForm(AutoUploaderSettings settings)
        {
            LOGGER.Info("Initializing release notes form");

            InitializeComponent();
            this.settings = settings;

            disableNotesCheckbox.Checked = settings.ShowReleaseNotes;
        }
 private void RecreateSaved()
 {
     LOGGER.Debug($"Recreating cache of saved autouploader settings");
     Saved = new AutoUploaderSettings();
     Saved.ShowReleaseNotes = Settings.ShowReleaseNotes;
 }