mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-03 02:57:22 -05:00
16 lines
252 B
C#
16 lines
252 B
C#
using MediaBrowser.Model.System;
|
|
|
|
namespace Emby.Server
|
|
{
|
|
public class PowerManagement : IPowerManagement
|
|
{
|
|
public void PreventSystemStandby()
|
|
{
|
|
}
|
|
|
|
public void AllowSystemStandby()
|
|
{
|
|
}
|
|
}
|
|
}
|