CinemaModeConfiguration.cs 1.0 KB

123456789101112131415161718192021222324252627
  1. 
  2. namespace MediaBrowser.Model.Configuration
  3. {
  4. public class CinemaModeConfiguration
  5. {
  6. public bool EnableIntrosForMovies { get; set; }
  7. public bool EnableIntrosForEpisodes { get; set; }
  8. public bool EnableIntrosForWatchedContent { get; set; }
  9. public bool EnableIntrosFromUpcomingTrailers { get; set; }
  10. public bool EnableIntrosFromMoviesInLibrary { get; set; }
  11. public bool EnableIntrosParentalControl { get; set; }
  12. public bool EnableIntrosFromSimilarMovies { get; set; }
  13. public string CustomIntroPath { get; set; }
  14. public string MediaInfoIntroPath { get; set; }
  15. public bool EnableIntrosFromUpcomingDvdMovies { get; set; }
  16. public bool EnableIntrosFromUpcomingStreamingMovies { get; set; }
  17. public int TrailerLimit { get; set; }
  18. public CinemaModeConfiguration()
  19. {
  20. EnableIntrosParentalControl = true;
  21. EnableIntrosFromSimilarMovies = true;
  22. TrailerLimit = 2;
  23. }
  24. }
  25. }