using System; namespace MediaBrowser.Controller.Power { public interface IPowerManagement { /// /// Schedules the wake. /// /// The UTC time. void ScheduleWake(DateTime utcTime); } }