jellyfin/Jellyfin.Server/PowerManagement.cs

24 lines
373 B
C#
Raw Normal View History

2019-01-01 16:27:11 +01:00
using System;
2018-09-12 19:26:21 +02:00
using MediaBrowser.Model.System;
2016-11-09 05:58:58 +01:00
2019-01-01 16:27:11 +01:00
namespace Jellyfin.Server.Native
2016-11-09 05:58:58 +01:00
{
public class PowerManagement : IPowerManagement
{
public void PreventSystemStandby()
{
2019-01-01 16:27:11 +01:00
2016-11-09 05:58:58 +01:00
}
public void AllowSystemStandby()
{
2019-01-01 16:27:11 +01:00
2016-11-09 05:58:58 +01:00
}
2018-09-12 19:26:21 +02:00
public void ScheduleWake(DateTime wakeTimeUtc, string displayName)
{
2019-01-01 16:27:11 +01:00
2018-09-12 19:26:21 +02:00
}
2016-11-09 05:58:58 +01:00
}
}