aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Health/IHealthMonitor.cs
blob: b8ad98fc14f172e506cd567f1321db2ca20c6a51 (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.Controller.Health
{
    public interface IHealthMonitor
    {
        Task<List<Notification>> GetNotifications(CancellationToken cancellationToken);
    }
}