jellyfin/MediaBrowser.Model/Tasks/TaskCompletionStatus.cs

29 lines
565 B
C#
Raw Normal View History

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