mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 21:08:27 +01:00
Add GPL modules
This commit is contained in:
29
MediaBrowser.Model/Tasks/TaskCompletionStatus.cs
Normal file
29
MediaBrowser.Model/Tasks/TaskCompletionStatus.cs
Normal file
@@ -0,0 +1,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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user