update power management

This commit is contained in:
Luke Pulverenti
2016-11-08 23:58:58 -05:00
parent 15ebff2b3a
commit 24532f3e2d
20 changed files with 254 additions and 178 deletions

View File

@@ -0,0 +1,9 @@

namespace MediaBrowser.Model.System
{
public interface IPowerManagement
{
void PreventSystemStandby();
void AllowSystemStandby();
}
}