blob: 72a350c3d021e73934c01b8ffe6a13214af63d48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="StartupOptions.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The Castle Bootstrapper
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Startup
{
using System.Collections.Generic;
/// <summary>
/// The startup options.
/// </summary>
public class StartupOptions
{
/// <summary>
/// Gets or sets a value indicating whether auto restart queue.
/// </summary>
public static bool AutoRestartQueue { get; set; }
public static List<string> QueueRecoveryIds { get; set; }
}
}
|