blob: 03907568cfb19305550fba32d0801e022bc944bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
namespace MediaBrowser.Model.System
{
public interface IPowerManagement
{
void PreventSystemStandby();
void AllowSystemStandby();
void ScheduleWake(DateTime wakeTimeUtc, string displayName);
}
}
|