CinemaModeConfiguration.cs 1.1 KB

1234567891011121314151617181920212223242526272829
  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 string[] Tags { get; set; }
  19. public CinemaModeConfiguration()
  20. {
  21. EnableIntrosParentalControl = true;
  22. EnableIntrosFromSimilarMovies = true;
  23. TrailerLimit = 2;
  24. Tags = new[] { "thx" };
  25. }
  26. }
  27. }