jellyfin/Jellyfin.Server/PowerManagement.cs
2019-01-02 02:30:59 +03:00

24 lines
373 B
C#

using System;
using MediaBrowser.Model.System;
namespace Jellyfin.Server.Native
{
public class PowerManagement : IPowerManagement
{
public void PreventSystemStandby()
{
}
public void AllowSystemStandby()
{
}
public void ScheduleWake(DateTime wakeTimeUtc, string displayName)
{
}
}
}