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

22 lines
411 B
C#
Raw Normal View History

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