jellyfin/src/Emby.Server/PowerManagement.cs
2016-11-12 23:33:51 -05:00

16 lines
252 B
C#

using MediaBrowser.Model.System;
namespace Emby.Server
{
public class PowerManagement : IPowerManagement
{
public void PreventSystemStandby()
{
}
public void AllowSystemStandby()
{
}
}
}