// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Queue Item Status
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Services.Queue.Model
{
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using HandBrake.ApplicationServices.Converters;
///
/// Queue Item Status
///
[TypeConverter(typeof(EnumToDescConverter))]
public enum QueueItemStatus
{
[Description("Waiting")]
[Display(Name = "Waiting")]
Waiting = 0,
[Description("In Progress")]
[Display(Name = "In Progress")]
InProgress,
[Description("Completed")]
[Display(Name = "Completed")]
Completed,
[Description("Error")]
[Display(Name = "Error")]
Error,
}
}