From 37683565e71fc132dd7aaf77d4418afd4ea5f643 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 1 Jun 2014 15:41:35 -0400 Subject: added new channel settings --- MediaBrowser.Model/Configuration/ServerConfiguration.cs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs') 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; } + /// /// Initializes a new instance of the class. /// @@ -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; } + } } -- cgit v1.2.3