jellyfin/MediaBrowser.Model/System/IPowerManagement.cs
2018-12-27 18:27:57 -05:00

12 lines
249 B
C#

using System;
namespace MediaBrowser.Model.System
{
public interface IPowerManagement
{
void PreventSystemStandby();
void AllowSystemStandby();
void ScheduleWake(DateTime wakeTimeUtc, string displayName);
}
}