support system wake on recording schedule

This commit is contained in:
Luke Pulverenti
2016-01-21 12:29:14 -05:00
parent f380ddc558
commit 657e90c98b
10 changed files with 115 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
using System;
namespace MediaBrowser.Controller.Power
{
public interface IPowerManagement
{
/// <summary>
/// Schedules the wake.
/// </summary>
/// <param name="utcTime">The UTC time.</param>
void ScheduleWake(DateTime utcTime);
}
}