IPowerManagement.cs 166 B

123456789
  1. 
  2. namespace MediaBrowser.Model.System
  3. {
  4. public interface IPowerManagement
  5. {
  6. void PreventSystemStandby();
  7. void AllowSystemStandby();
  8. }
  9. }