update shared components

This commit is contained in:
Luke Pulverenti
2016-05-12 22:32:12 -04:00
parent ae2b6ddf39
commit 829aa9e855
3 changed files with 13 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Model.Notifications;
namespace MediaBrowser.Controller.Health
{
public interface IHealthMonitor
{
Task<List<Notification>> GetNotifications(CancellationToken cancellationToken);
}
}