IHealthMonitor.cs 313 B

123456789101112
  1. using System.Collections.Generic;
  2. using System.Threading;
  3. using System.Threading.Tasks;
  4. using MediaBrowser.Model.Notifications;
  5. namespace MediaBrowser.Controller.Health
  6. {
  7. public interface IHealthMonitor
  8. {
  9. Task<List<Notification>> GetNotifications(CancellationToken cancellationToken);
  10. }
  11. }