IPowerManagement.cs 290 B

12345678910111213
  1. using System;
  2. namespace MediaBrowser.Controller.Power
  3. {
  4. public interface IPowerManagement
  5. {
  6. /// <summary>
  7. /// Schedules the wake.
  8. /// </summary>
  9. /// <param name="utcTime">The UTC time.</param>
  10. void ScheduleWake(DateTime utcTime);
  11. }
  12. }