12 lines
249 B
C#
12 lines
249 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Model.System
|
|
{
|
|
public interface IPowerManagement
|
|
{
|
|
void PreventSystemStandby();
|
|
void AllowSystemStandby();
|
|
void ScheduleWake(DateTime wakeTimeUtc, string displayName);
|
|
}
|
|
}
|