mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			469 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			469 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace MediaBrowser.Controller.Providers
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Enum ProviderRefreshStatus
 | 
						|
    /// </summary>
 | 
						|
    public enum ProviderRefreshStatus
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// The success
 | 
						|
        /// </summary>
 | 
						|
        Success = 0,
 | 
						|
        /// <summary>
 | 
						|
        /// The completed with errors
 | 
						|
        /// </summary>
 | 
						|
        CompletedWithErrors = 1,
 | 
						|
         /// <summary>
 | 
						|
        /// The failure
 | 
						|
        /// </summary>
 | 
						|
        Failure = 2
 | 
						|
   }
 | 
						|
}
 |