blob: 6ba5ba5e4fc9c141ffb3e949b00cfa67bd9d8365 (
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
|
namespace MediaBrowser.Model.Tasks
{
/// <summary>
/// Enum TaskCompletionStatus
/// </summary>
public enum TaskCompletionStatus
{
/// <summary>
/// The completed
/// </summary>
Completed,
/// <summary>
/// The failed
/// </summary>
Failed,
/// <summary>
/// Manually cancelled by the user
/// </summary>
Cancelled,
/// <summary>
/// Aborted due to a system failure or shutdown
/// </summary>
Aborted
}
}
|