blob: 92eab43e1f6ac4d8a4bde0ec41d5b120e2ca4a6f (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="QueueItemStatus.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>
// Queue Item Status
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Services.Queue.Model
{
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using HandBrake.ApplicationServices.Converters;
/// <summary>
/// Queue Item Status
/// </summary>
[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,
}
}
|