using MediaBrowser.Model.Configuration;
namespace MediaBrowser.UI.Configuration
{
///
/// This is the UI's device configuration that applies regardless of which user is logged in.
///
public class UIApplicationConfiguration : BaseApplicationConfiguration
{
///
/// Gets or sets the server host name (myserver or 192.168.x.x)
///
public string ServerHostName { get; set; }
///
/// Gets or sets the port number used by the API
///
public int ServerApiPort { get; set; }
public UIApplicationConfiguration()
: base()
{
ServerHostName = "localhost";
ServerApiPort = 8096;
}
}
}