aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/ServerConfiguration.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-06-01 15:41:35 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-06-01 15:41:35 -0400
commit37683565e71fc132dd7aaf77d4418afd4ea5f643 (patch)
treeb45337e83829d314d60f4ed6e8edd97dd2bf41e5 /MediaBrowser.Model/Configuration/ServerConfiguration.cs
parent20d35a640570eab1a47e4bd8c156f1e8aeb7db2d (diff)
added new channel settings
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
-rw-r--r--MediaBrowser.Model/Configuration/ServerConfiguration.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs
index 4fe5c8bcf..17c7e8b55 100644
--- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs
+++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs
@@ -226,6 +226,8 @@ namespace MediaBrowser.Model.Configuration
[Obsolete]
public string[] ManualLoginClients { get; set; }
+ public ChannelOptions ChannelOptions { get; set; }
+
/// <summary>
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
/// </summary>
@@ -293,6 +295,13 @@ namespace MediaBrowser.Model.Configuration
NotificationOptions = new NotificationOptions();
SubtitleOptions = new SubtitleOptions();
+
+ ChannelOptions = new ChannelOptions();
}
}
+
+ public class ChannelOptions
+ {
+ public int? PreferredStreamingWidth { get; set; }
+ }
}