mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-07 16:28:56 +01:00
make model project portable
This commit is contained in:
12
MediaBrowser.Model/Health/IHealthMonitor.cs
Normal file
12
MediaBrowser.Model/Health/IHealthMonitor.cs
Normal file
@@ -0,0 +1,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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user