diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-09-22 17:56:54 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-09-22 17:56:54 -0400 |
| commit | 1afb28b48797ee53442823cfd395e07d219e8ec3 (patch) | |
| tree | 694d2d8a3449a6d8cb46fddeb73ed1f96be634d7 /MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs | |
| parent | ac201a6cdb22ff158aaca1378361b03b2127686d (diff) | |
add cinema mode feature
Diffstat (limited to 'MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs b/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs new file mode 100644 index 000000000..35053e3de --- /dev/null +++ b/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs @@ -0,0 +1,23 @@ + +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 EnableCustomIntro { get; set; } + public bool EnableIntrosParentalControl { get; set; } + + public CinemaModeConfiguration() + { + EnableIntrosForMovies = true; + EnableCustomIntro = true; + EnableIntrosFromMoviesInLibrary = true; + EnableIntrosFromUpcomingTrailers = true; + EnableIntrosParentalControl = true; + } + } +} |
