mirror of https://github.com/HandBrake/HandBrake
24 lines
798 B
C#
24 lines
798 B
C#
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="QueueCommandParams.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>
|
|
// Defines the QueueCommandParams type.
|
|
// </summary>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
namespace HandBrakeWPF.Commands.Menu
|
|
{
|
|
/// <summary>
|
|
/// The queue command params.
|
|
/// </summary>
|
|
public enum QueueCommandParams
|
|
{
|
|
ClearCompleted,
|
|
ClearAll,
|
|
ClearSelected,
|
|
Import,
|
|
Export
|
|
}
|
|
}
|