jellyfin/MediaBrowser.Server.Mono/Native/PowerManagement.cs
2016-11-08 23:58:58 -05:00

16 lines
272 B
C#

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