aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System/IPowerManagement.cs
blob: 91cae0d3e4468f16f8e449163c6ee5f7fee51e9e (plain)
1
2
3
4
5
6
7
8
9
namespace MediaBrowser.Model.System
{
    public interface IPowerManagement
    {
        void PreventSystemStandby();
        void AllowSystemStandby();
    }
}