mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-18 03:19:06 -07:00
16 lines
272 B
C#
16 lines
272 B
C#
|
using MediaBrowser.Model.System;
|
|||
|
|
|||
|
namespace MediaBrowser.Server.Mono.Native
|
|||
|
{
|
|||
|
public class PowerManagement : IPowerManagement
|
|||
|
{
|
|||
|
public void PreventSystemStandby()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public void AllowSystemStandby()
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|