diff options
Diffstat (limited to 'MediaBrowser.Controller/IServerApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.Controller/IServerApplicationHost.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/IServerApplicationHost.cs b/MediaBrowser.Controller/IServerApplicationHost.cs index 4b2ca497b..21f5fa87a 100644 --- a/MediaBrowser.Controller/IServerApplicationHost.cs +++ b/MediaBrowser.Controller/IServerApplicationHost.cs @@ -1,5 +1,6 @@ using MediaBrowser.Common; using MediaBrowser.Model.System; +using System; namespace MediaBrowser.Controller { @@ -8,6 +9,8 @@ namespace MediaBrowser.Controller /// </summary> public interface IServerApplicationHost : IApplicationHost { + event EventHandler HasUpdateAvailableChanged; + /// <summary> /// Gets the system info. /// </summary> @@ -31,5 +34,11 @@ namespace MediaBrowser.Controller /// </summary> /// <value>The HTTP server port.</value> int HttpServerPort { get; } + + /// <summary> + /// Gets a value indicating whether this instance has update available. + /// </summary> + /// <value><c>true</c> if this instance has update available; otherwise, <c>false</c>.</value> + bool HasUpdateAvailable { get; } } } |
