jellyfin/MediaBrowser.Model/System/IPowerManagement.cs

10 lines
166 B
C#
Raw Normal View History

2016-11-09 05:58:58 +01:00

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