aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2019-01-02 15:57:48 +0100
committerBond_009 <bond.009@outlook.com>2019-01-06 12:55:48 +0100
commitc07d5a69635494e1bcd39890df8f929fb7353709 (patch)
tree95b80cc887e09a3e5ba9926407176c7d809c02ca /MediaBrowser.Model/System
parentb27315bc08d4d224cf090efc24385c7102741089 (diff)
Remove unused PowerManagement
It isn't up to the application to prevent the system from going to sleep
Diffstat (limited to 'MediaBrowser.Model/System')
-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 03907568c..000000000
--- 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);
- }
-}