Add rudimentary quick move support to folders.

This commit is contained in:
Ottermandias 2023-03-21 15:58:08 +01:00
parent b92a3161b5
commit 21181370e7
4 changed files with 23 additions and 8 deletions

View file

@ -79,6 +79,9 @@ public class Configuration : IPluginConfiguration
public bool OpenFoldersByDefault { get; set; } = false;
public int SingleGroupRadioMax { get; set; } = 2;
public string DefaultImportFolder { get; set; } = string.Empty;
public string QuickMoveFolder1 { get; set; } = string.Empty;
public string QuickMoveFolder2 { get; set; } = string.Empty;
public string QuickMoveFolder3 { get; set; } = string.Empty;
public DoubleModifier DeleteModModifier { get; set; } = new(ModifierHotkey.Control, ModifierHotkey.Shift);
public bool PrintSuccessfulCommandsToChat { get; set; } = true;