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