jellyfin/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs

28 lines
1 KiB
C#
Raw Normal View History

2014-09-22 23:56:54 +02:00

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; }
2014-10-09 01:31:44 +02:00
public bool EnableIntrosFromSimilarMovies { get; set; }
2014-09-23 02:04:50 +02:00
public string CustomIntroPath { get; set; }
2015-11-17 18:41:58 +01:00
public string MediaInfoIntroPath { get; set; }
2014-09-30 06:47:30 +02:00
public bool EnableIntrosFromUpcomingDvdMovies { get; set; }
public bool EnableIntrosFromUpcomingStreamingMovies { get; set; }
2014-09-22 23:56:54 +02:00
2014-10-10 00:22:04 +02:00
public int TrailerLimit { get; set; }
2014-09-22 23:56:54 +02:00
public CinemaModeConfiguration()
{
EnableIntrosParentalControl = true;
2014-12-22 07:50:29 +01:00
EnableIntrosFromSimilarMovies = true;
2014-10-10 00:22:04 +02:00
TrailerLimit = 2;
2014-09-22 23:56:54 +02:00
}
}
}