aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-09-22 20:04:50 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-09-22 20:04:50 -0400
commit99dba814f405f08111b36ace4ba8a7fc7a273245 (patch)
treed20cda1d4f8579ae438d2660afce69f5caf24003 /MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs
parent1afb28b48797ee53442823cfd395e07d219e8ec3 (diff)
add custom intros path
Diffstat (limited to 'MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs')
-rw-r--r--MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs b/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs
index 35053e3de..5cff9f65b 100644
--- a/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs
+++ b/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs
@@ -10,10 +10,10 @@ namespace MediaBrowser.Model.Configuration
public bool EnableIntrosFromMoviesInLibrary { get; set; }
public bool EnableCustomIntro { get; set; }
public bool EnableIntrosParentalControl { get; set; }
+ public string CustomIntroPath { get; set; }
public CinemaModeConfiguration()
{
- EnableIntrosForMovies = true;
EnableCustomIntro = true;
EnableIntrosFromMoviesInLibrary = true;
EnableIntrosFromUpcomingTrailers = true;