jellyfin/MediaBrowser.Model/Tasks/TaskCompletionStatus.cs

29 lines
560 B
C#
Raw Normal View History

2018-12-27 18:27:57 -05:00
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
}
}