jellyfin/MediaBrowser.Server.Mono/Native/PowerManagement.cs

16 lines
272 B
C#
Raw Normal View History

2016-11-09 05:58:58 +01:00
using MediaBrowser.Model.System;
namespace MediaBrowser.Server.Mono.Native
{
public class PowerManagement : IPowerManagement
{
public void PreventSystemStandby()
{
}
public void AllowSystemStandby()
{
}
}
}