mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 11:59:02 -07:00
22 lines
411 B
C#
22 lines
411 B
C#
using System;
|
|
using MediaBrowser.Model.System;
|
|
|
|
namespace MediaBrowser.Server.Mono.Native
|
|
{
|
|
public class PowerManagement : IPowerManagement
|
|
{
|
|
public void PreventSystemStandby()
|
|
{
|
|
}
|
|
|
|
public void AllowSystemStandby()
|
|
{
|
|
}
|
|
|
|
public void ScheduleWake(DateTime wakeTimeUtc, string displayName)
|
|
{
|
|
// nothing to Do
|
|
}
|
|
}
|
|
}
|