diff options
| author | ebr11 Eric Reed spam <ebr11 Eric Reed spam@reedsplace.com> | 2012-09-20 13:54:37 -0400 |
|---|---|---|
| committer | ebr11 Eric Reed spam <ebr11 Eric Reed spam@reedsplace.com> | 2012-09-20 13:54:37 -0400 |
| commit | 7ed11c0bbae55cd2d5c559a2ef6af8f20edebeef (patch) | |
| tree | f96d8d2ba2b3ba71b7b31f012fcdd80ae09f0868 /MediaBrowser.UI/Configuration/UIApplicationConfiguration.cs | |
| parent | da618f13e23cbef6ca71c8c0099dfd563a394fa5 (diff) | |
| parent | 119dfc3ac70db7536e86191eb3c89ffa1fd4f576 (diff) | |
Merge with default
Diffstat (limited to 'MediaBrowser.UI/Configuration/UIApplicationConfiguration.cs')
| -rw-r--r-- | MediaBrowser.UI/Configuration/UIApplicationConfiguration.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/MediaBrowser.UI/Configuration/UIApplicationConfiguration.cs b/MediaBrowser.UI/Configuration/UIApplicationConfiguration.cs new file mode 100644 index 000000000..59c625178 --- /dev/null +++ b/MediaBrowser.UI/Configuration/UIApplicationConfiguration.cs @@ -0,0 +1,27 @@ +using MediaBrowser.Model.Configuration;
+
+namespace MediaBrowser.UI.Configuration
+{
+ /// <summary>
+ /// This is the UI's device configuration that applies regardless of which user is logged in.
+ /// </summary>
+ public class UIApplicationConfiguration : BaseApplicationConfiguration
+ {
+ /// <summary>
+ /// Gets or sets the server host name (myserver or 192.168.x.x)
+ /// </summary>
+ public string ServerHostName { get; set; }
+
+ /// <summary>
+ /// Gets or sets the port number used by the API
+ /// </summary>
+ public int ServerApiPort { get; set; }
+
+ public UIApplicationConfiguration()
+ : base()
+ {
+ ServerHostName = "localhost";
+ ServerApiPort = 8096;
+ }
+ }
+}
|
