24 lines
373 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|