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

22 lines
411 B
C#
Raw Normal View History

2018-09-12 17:26:21 +00:00
using System;
using MediaBrowser.Model.System;
2016-11-09 04:58:58 +00:00
namespace MediaBrowser.Server.Mono.Native
{
public class PowerManagement : IPowerManagement
{
public void PreventSystemStandby()
{
}
public void AllowSystemStandby()
{
}
2018-09-12 17:26:21 +00:00
public void ScheduleWake(DateTime wakeTimeUtc, string displayName)
{
// nothing to Do
}
2016-11-09 04:58:58 +00:00
}
}