jellyfin/MediaBrowser.Model/Health/IHealthMonitor.cs
2016-10-21 22:08:34 -04:00

13 lines
308 B
C#

using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Model.Notifications;
namespace MediaBrowser.Model.Health
{
public interface IHealthMonitor
{
Task<List<Notification>> GetNotifications(CancellationToken cancellationToken);
}
}