mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
18 lines
384 B
C#
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);
|
|
}
|
|
}
|
|
}
|