aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Tasks/TaskCompletionStatus.cs
blob: 9acdf61d8da43a772c8fa0bbd255a9e8d57f597a (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
    }
}