diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-25 22:55:07 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-25 22:55:07 -0400 |
| commit | c40d3f349463c11c69fc2dcf929dc9f768f8fc86 (patch) | |
| tree | d86a3dc958c03b437af7b8fdc2b7e14d81b6d3fe /MediaBrowser.Controller/IServerApplicationHost.cs | |
| parent | 28f5a9ac756391bbdb56867dc376ff4829e6f312 (diff) | |
add more notifications
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; } } } |
