Files
jellyfin-jellyfin-1/MediaBrowser.Model/System/IPowerManagement.cs

10 lines
166 B
C#
Raw Normal View History

2016-11-08 23:58:58 -05:00

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