jellyfin/MediaBrowser.ServerApplication/Native/PowerManagement.cs
2016-11-08 23:58:58 -05:00

18 lines
384 B
C#

using MediaBrowser.Model.System;
namespace MediaBrowser.ServerApplication.Native
{
public class PowerManagement : IPowerManagement
{
public void PreventSystemStandby()
{
MainStartup.Invoke(Standby.PreventSleep);
}
public void AllowSystemStandby()
{
MainStartup.Invoke(Standby.AllowSleep);
}
}
}