diff options
| author | simon <admin@nyalindee.com> | 2014-01-13 12:32:10 +1100 |
|---|---|---|
| committer | simon <admin@nyalindee.com> | 2014-01-13 12:32:10 +1100 |
| commit | 37aab84b2af0e86eff668b888aa577d74b55a687 (patch) | |
| tree | 5120180925cb3617b05c7920d654d890083d9f40 /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | f89deb346a405e1d431841218a51f64acf743a0e (diff) | |
| parent | e4f5a3f005a240b013194d6a54edce29fef91e11 (diff) | |
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index bdf072b50..f7b4cf373 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -223,7 +223,10 @@ namespace MediaBrowser.Model.Configuration public string TranscodingTempPath { get; set; } public bool EnableAutomaticRestart { get; set; } - + + + public LiveTvOptions LiveTvOptions { get; set; } + /// <summary> /// Initializes a new instance of the <see cref="ServerConfiguration" /> class. /// </summary> @@ -287,6 +290,8 @@ namespace MediaBrowser.Model.Configuration { MaxBackdrops = 1 }; + + LiveTvOptions = new LiveTvOptions(); } } @@ -303,4 +308,9 @@ namespace MediaBrowser.Model.Configuration HighQuality, MaxQuality } + + public class LiveTvOptions + { + public int? GuideDays { get; set; } + } } |
