blob: 98634634e5e2e0fa545d32f34265184c6ff1b554 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// --------------------------------------------------------------------------------------------------------------------
// <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
{
/// <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; }
}
}
|