diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-24 14:03:55 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-24 14:03:55 -0500 |
| commit | ee00f8bf726ae5498d64cff0086b9b7e638936ea (patch) | |
| tree | 710a5b4b715e5fbf1574bc072c4f299e7c9826ff /MediaBrowser.Controller/IServerApplicationHost.cs | |
| parent | 1af651bc56025935cebe2762d6f36be41530eba1 (diff) | |
added HasSyncJob
Diffstat (limited to 'MediaBrowser.Controller/IServerApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.Controller/IServerApplicationHost.cs | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/IServerApplicationHost.cs b/MediaBrowser.Controller/IServerApplicationHost.cs index 0b0f6d828..105e4e2f0 100644 --- a/MediaBrowser.Controller/IServerApplicationHost.cs +++ b/MediaBrowser.Controller/IServerApplicationHost.cs @@ -55,9 +55,15 @@ namespace MediaBrowser.Controller string FriendlyName { get; } /// <summary> - /// Gets the HTTP server ip addresses. + /// Gets the local ip address. /// </summary> - /// <value>The HTTP server ip addresses.</value> - IEnumerable<string> HttpServerIpAddresses { get; } + /// <value>The local ip address.</value> + string LocalIpAddress { get; } + + /// <summary> + /// Gets the local API URL. + /// </summary> + /// <value>The local API URL.</value> + string LocalApiUrl { get; } } } |
