You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
373 B
24 lines
373 B
6 years ago
|
using System;
|
||
6 years ago
|
using MediaBrowser.Model.System;
|
||
8 years ago
|
|
||
6 years ago
|
namespace Jellyfin.Server.Native
|
||
8 years ago
|
{
|
||
|
public class PowerManagement : IPowerManagement
|
||
|
{
|
||
|
public void PreventSystemStandby()
|
||
|
{
|
||
6 years ago
|
|
||
8 years ago
|
}
|
||
|
|
||
|
public void AllowSystemStandby()
|
||
|
{
|
||
6 years ago
|
|
||
8 years ago
|
}
|
||
6 years ago
|
|
||
|
public void ScheduleWake(DateTime wakeTimeUtc, string displayName)
|
||
|
{
|
||
6 years ago
|
|
||
6 years ago
|
}
|
||
8 years ago
|
}
|
||
|
}
|