CinemaModeConfiguration.cs 930 B

12345678910111213141516171819202122232425
  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 bool EnableIntrosFromUpcomingDvdMovies { get; set; }
  15. public bool EnableIntrosFromUpcomingStreamingMovies { get; set; }
  16. public int TrailerLimit { get; set; }
  17. public CinemaModeConfiguration()
  18. {
  19. EnableIntrosParentalControl = true;
  20. TrailerLimit = 2;
  21. }
  22. }
  23. }