PowerManagement.cs 384 B

1234567891011121314151617
  1. using MediaBrowser.Model.System;
  2. namespace MediaBrowser.ServerApplication.Native
  3. {
  4. public class PowerManagement : IPowerManagement
  5. {
  6. public void PreventSystemStandby()
  7. {
  8. MainStartup.Invoke(Standby.PreventSleep);
  9. }
  10. public void AllowSystemStandby()
  11. {
  12. MainStartup.Invoke(Standby.AllowSleep);
  13. }
  14. }
  15. }