mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			243 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			243 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Library
 | 
						|
{
 | 
						|
    [Flags]
 | 
						|
    public enum ItemUpdateType
 | 
						|
    {
 | 
						|
        None = 1,
 | 
						|
        MetadataImport = 2,
 | 
						|
        ImageUpdate = 4,
 | 
						|
        MetadataDownload = 8,
 | 
						|
        MetadataEdit = 16
 | 
						|
    }
 | 
						|
}
 |