diff options
Diffstat (limited to 'MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs b/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs new file mode 100644 index 000000000..764a7222f --- /dev/null +++ b/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs @@ -0,0 +1,26 @@ + +namespace MediaBrowser.Model.Configuration +{ + public class CinemaModeConfiguration + { + public bool EnableIntrosForMovies { get; set; } + public bool EnableIntrosForEpisodes { get; set; } + public bool EnableIntrosForWatchedContent { get; set; } + public bool EnableIntrosFromUpcomingTrailers { get; set; } + public bool EnableIntrosFromMoviesInLibrary { get; set; } + public bool EnableIntrosParentalControl { get; set; } + public bool EnableIntrosFromSimilarMovies { get; set; } + public string CustomIntroPath { get; set; } + public bool EnableIntrosFromUpcomingDvdMovies { get; set; } + public bool EnableIntrosFromUpcomingStreamingMovies { get; set; } + + public int TrailerLimit { get; set; } + + public CinemaModeConfiguration() + { + EnableIntrosParentalControl = true; + EnableIntrosFromSimilarMovies = true; + TrailerLimit = 2; + } + } +} |
