jellyfin-server/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs

27 lines
980 B
C#
Raw Normal View History

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