CinemaModeConfiguration.cs 834 B

1234567891011121314151617181920212223
  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 EnableCustomIntro { get; set; }
  12. public bool EnableIntrosParentalControl { get; set; }
  13. public string CustomIntroPath { get; set; }
  14. public CinemaModeConfiguration()
  15. {
  16. EnableCustomIntro = true;
  17. EnableIntrosFromMoviesInLibrary = true;
  18. EnableIntrosFromUpcomingTrailers = true;
  19. EnableIntrosParentalControl = true;
  20. }
  21. }
  22. }