blob: 5c8b5f22354e0e723e267c237eb30f461a993204 (
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
|
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
}
}
|