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

16 lines
263 B
C#
Raw Normal View History

2016-11-14 05:50:23 +01:00
using MediaBrowser.Model.System;
namespace Emby.Server.Mac.Native
{
public class PowerManagement : IPowerManagement
{
public void PreventSystemStandby()
{
}
public void AllowSystemStandby()
{
}
}
}