CinemaModeConfiguration.cs 980 B

1234567891011121314151617181920212223242526
  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. EnableIntrosFromSimilarMovies = true;
  21. TrailerLimit = 2;
  22. }
  23. }
  24. }