aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Startup.Common/INativeApp.cs
diff options
context:
space:
mode:
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();
}
}