aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Health/IHealthMonitor.cs
blob: a4f95c1bcc16a98b89fcbae96bcf63ec91121682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);
    }
}