You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
using System.Collections.Generic;
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
namespace MediaBrowser.Controller.Configuration
|
|
{
|
|
public class ServerConfiguration : BaseApplicationConfiguration
|
|
{
|
|
public string ImagesByNamePath { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the default UI configuration
|
|
/// </summary>
|
|
public UserConfiguration DefaultUserConfiguration { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a list of registered UI device names
|
|
/// </summary>
|
|
public List<string> DeviceNames { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets all available UIConfigurations
|
|
/// The key contains device name and user id
|
|
/// </summary>
|
|
public Dictionary<string, UserConfiguration> UserConfigurations { get; set; }
|
|
|
|
public ServerConfiguration()
|
|
: base()
|
|
{
|
|
DefaultUserConfiguration = new UserConfiguration();
|
|
|
|
UserConfigurations = new Dictionary<string, UserConfiguration>();
|
|
|
|
DeviceNames = new List<string>();
|
|
}
|
|
}
|
|
}
|