jellyfin-server/MediaBrowser.Model/System/IPowerManagement.cs

10 lines
166 B
C#
Raw Normal View History

2016-11-09 04:58:58 +00:00

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