mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace MediaBrowser.Model.Configuration
 | 
						|
{
 | 
						|
    public class CinemaModeConfiguration
 | 
						|
    {
 | 
						|
        public bool EnableIntrosForMovies { get; set; }
 | 
						|
        public bool EnableIntrosForEpisodes { get; set; }
 | 
						|
        public bool EnableIntrosForWatchedContent { get; set; }
 | 
						|
        public bool EnableIntrosFromUpcomingTrailers { get; set; }
 | 
						|
        public bool EnableIntrosFromMoviesInLibrary { get; set; }
 | 
						|
        public bool EnableIntrosParentalControl { get; set; }
 | 
						|
        public bool EnableIntrosFromSimilarMovies { get; set; }
 | 
						|
        public string CustomIntroPath { get; set; }
 | 
						|
        public string MediaInfoIntroPath { get; set; }
 | 
						|
        public bool EnableIntrosFromUpcomingDvdMovies { get; set; }
 | 
						|
        public bool EnableIntrosFromUpcomingStreamingMovies { get; set; }
 | 
						|
 | 
						|
        public int TrailerLimit { get; set; }
 | 
						|
        
 | 
						|
        public CinemaModeConfiguration()
 | 
						|
        {
 | 
						|
            EnableIntrosParentalControl = true;
 | 
						|
            EnableIntrosFromSimilarMovies = true;
 | 
						|
            TrailerLimit = 2;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |