Files
jellyfin-jellyfin-1/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs

27 lines
980 B
C#
Raw Normal View History

2014-09-22 17:56:54 -04: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-08 19:31:44 -04:00
public bool EnableIntrosFromSimilarMovies { get; set; }
2014-09-22 20:04:50 -04:00
public string CustomIntroPath { get; set; }
2014-09-30 00:47:30 -04:00
public bool EnableIntrosFromUpcomingDvdMovies { get; set; }
public bool EnableIntrosFromUpcomingStreamingMovies { get; set; }
2014-09-22 17:56:54 -04:00
2014-10-09 18:22:04 -04:00
public int TrailerLimit { get; set; }
2014-09-22 17:56:54 -04:00
public CinemaModeConfiguration()
{
EnableIntrosParentalControl = true;
2014-12-22 01:50:29 -05:00
EnableIntrosFromSimilarMovies = true;
2014-10-09 18:22:04 -04:00
TrailerLimit = 2;
2014-09-22 17:56:54 -04:00
}
}
}