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