From 5c6ec34a9cff0819957fe5e4278f6e0d1ecc1fa3 Mon Sep 17 00:00:00 2001 From: LukePulverenti Luke Pulverenti luke pulverenti Date: Fri, 17 Aug 2012 12:47:35 -0400 Subject: Consolidated handlers that return lists of items. Renamed ApiBaseItemWrapper to ApiBaseItemContainer. Added Person and Studio DTO's to BaseItemWrapper --- .../Configuration/ServerConfiguration.cs | 27 ---------------------- 1 file changed, 27 deletions(-) (limited to 'MediaBrowser.Controller/Configuration/ServerConfiguration.cs') diff --git a/MediaBrowser.Controller/Configuration/ServerConfiguration.cs b/MediaBrowser.Controller/Configuration/ServerConfiguration.cs index 56f3a854f..88d1012b1 100644 --- a/MediaBrowser.Controller/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Controller/Configuration/ServerConfiguration.cs @@ -1,37 +1,10 @@ using System.Collections.Generic; using MediaBrowser.Common.Configuration; -using MediaBrowser.Model.Configuration; namespace MediaBrowser.Controller.Configuration { public class ServerConfiguration : BaseApplicationConfiguration { public string ImagesByNamePath { get; set; } - - /// - /// Gets or sets the default UI configuration - /// - public UserConfiguration DefaultUserConfiguration { get; set; } - - /// - /// Gets or sets a list of registered UI device names - /// - public List DeviceNames { get; set; } - - /// - /// Gets or sets all available UIConfigurations - /// The key contains device name and user id - /// - public Dictionary UserConfigurations { get; set; } - - public ServerConfiguration() - : base() - { - DefaultUserConfiguration = new UserConfiguration(); - - UserConfigurations = new Dictionary(); - - DeviceNames = new List(); - } } } -- cgit v1.2.3