mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
30 lines
564 B
C#
30 lines
564 B
C#
|
|
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
|
|
}
|
|
}
|