jellyfin/MediaBrowser.Model/Tasks/TaskCompletionStatus.cs

29 lines
565 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Tasks
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// Enum TaskCompletionStatus.
2018-12-28 00:27:57 +01:00
/// </summary>
public enum TaskCompletionStatus
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// The completed.
2018-12-28 00:27:57 +01:00
/// </summary>
Completed,
/// <summary>
2020-02-04 01:49:27 +01:00
/// The failed.
2018-12-28 00:27:57 +01:00
/// </summary>
Failed,
/// <summary>
2020-02-04 01:49:27 +01:00
/// Manually cancelled by the user.
2018-12-28 00:27:57 +01:00
/// </summary>
Cancelled,
/// <summary>
2020-02-04 01:49:27 +01:00
/// Aborted due to a system failure or shutdown.
2018-12-28 00:27:57 +01:00
/// </summary>
Aborted
}
}