aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Health
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-21 22:08:34 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-21 22:08:34 -0400
commitc7f559f8cefa4c4b90df3bff72290c8bd5b18e01 (patch)
tree4d26b4995e7df5d44c39d76ba58db66f1e48dbc4 /MediaBrowser.Controller/Health
parentf8c603d5ebc28e03140df4f1b155c97b387f09a5 (diff)
make model project portable
Diffstat (limited to 'MediaBrowser.Controller/Health')
-rw-r--r--MediaBrowser.Controller/Health/IHealthMonitor.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/MediaBrowser.Controller/Health/IHealthMonitor.cs b/MediaBrowser.Controller/Health/IHealthMonitor.cs
deleted file mode 100644
index b8ad98fc14..0000000000
--- a/MediaBrowser.Controller/Health/IHealthMonitor.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-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);
- }
-}