diff options
author | sr55 <[email protected]> | 2018-04-14 21:06:15 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-04-14 21:06:15 +0100 |
commit | f0cad86eb7cc4be937393870559c509cad640172 (patch) | |
tree | 5aca4faf9a2062dc88b1a9365d1f9c31f411f8c9 /win/CS/HandBrakeWPF/Startup | |
parent | 36c1cdc7f0cfd69003d674883021cec3e900abed (diff) |
WinGui: New start-up command line option. --recover-queue-ids=<command separated id list> to recover specific queue files on startup.
Diffstat (limited to 'win/CS/HandBrakeWPF/Startup')
-rw-r--r-- | win/CS/HandBrakeWPF/Startup/StartupOptions.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Startup/StartupOptions.cs b/win/CS/HandBrakeWPF/Startup/StartupOptions.cs index 98634634e..72a350c3d 100644 --- a/win/CS/HandBrakeWPF/Startup/StartupOptions.cs +++ b/win/CS/HandBrakeWPF/Startup/StartupOptions.cs @@ -9,6 +9,8 @@ namespace HandBrakeWPF.Startup { + using System.Collections.Generic; + /// <summary> /// The startup options. /// </summary> @@ -18,5 +20,6 @@ namespace HandBrakeWPF.Startup /// Gets or sets a value indicating whether auto restart queue. /// </summary> public static bool AutoRestartQueue { get; set; } + public static List<string> QueueRecoveryIds { get; set; } } } |