mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			565 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			565 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
 | 
						|
    }
 | 
						|
}
 |