IPowerManagement.cs 249 B

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