aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Startup.Common/INativeApp.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-21 12:29:14 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-21 12:29:14 -0500
commit657e90c98b4c3c8a4581fd94bd1c41e843c26d19 (patch)
tree16d1edfc9ad76a6ff18f0f02af24cafff647198b /MediaBrowser.Server.Startup.Common/INativeApp.cs
parentf380ddc5589e35da966833d3b8a6f073f369b38b (diff)
support system wake on recording schedule
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/INativeApp.cs')
-rw-r--r--MediaBrowser.Server.Startup.Common/INativeApp.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Startup.Common/INativeApp.cs b/MediaBrowser.Server.Startup.Common/INativeApp.cs
index 597caf34c..75b38d0c4 100644
--- a/MediaBrowser.Server.Startup.Common/INativeApp.cs
+++ b/MediaBrowser.Server.Startup.Common/INativeApp.cs
@@ -2,6 +2,7 @@
using MediaBrowser.Model.Logging;
using System.Collections.Generic;
using System.Reflection;
+using MediaBrowser.Controller.Power;
namespace MediaBrowser.Server.Startup.Common
{
@@ -90,5 +91,11 @@ namespace MediaBrowser.Server.Startup.Common
/// Prevents the system stand by.
/// </summary>
void PreventSystemStandby();
+
+ /// <summary>
+ /// Gets the power management.
+ /// </summary>
+ /// <returns>IPowerManagement.</returns>
+ IPowerManagement GetPowerManagement();
}
}