mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			285 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			285 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Model.Configuration
 | 
						|
{
 | 
						|
    public class LibraryOptions
 | 
						|
    {
 | 
						|
        public bool EnableArchiveMediaFiles { get; set; }
 | 
						|
        public bool EnablePhotos { get; set; }
 | 
						|
 | 
						|
        public LibraryOptions()
 | 
						|
        {
 | 
						|
            EnablePhotos = true;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |