mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
13 lines
308 B
C#
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);
|
|
}
|
|
}
|