aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System/IPowerManagement.cs
diff options
context:
space:
mode:
authorAnthony Lavado <anthonylavado@users.noreply.github.com>2019-01-06 16:17:33 +0000
committerGitHub <noreply@github.com>2019-01-06 16:17:33 +0000
commite9b44a3d6e9a02961314c00922e08de3a011a8dd (patch)
tree95b80cc887e09a3e5ba9926407176c7d809c02ca /MediaBrowser.Model/System/IPowerManagement.cs
parentb27315bc08d4d224cf090efc24385c7102741089 (diff)
parentc07d5a69635494e1bcd39890df8f929fb7353709 (diff)
Merge pull request #365 from Bond-009/power
Remove unused PowerManagement
Diffstat (limited to 'MediaBrowser.Model/System/IPowerManagement.cs')
-rw-r--r--MediaBrowser.Model/System/IPowerManagement.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/MediaBrowser.Model/System/IPowerManagement.cs b/MediaBrowser.Model/System/IPowerManagement.cs
deleted file mode 100644
index 03907568cf..0000000000
--- a/MediaBrowser.Model/System/IPowerManagement.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-
-namespace MediaBrowser.Model.System
-{
- public interface IPowerManagement
- {
- void PreventSystemStandby();
- void AllowSystemStandby();
- void ScheduleWake(DateTime wakeTimeUtc, string displayName);
- }
-}