jellyfin/MediaBrowser.Model/System/IPowerManagement.cs

12 lines
249 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
using System;
namespace MediaBrowser.Model.System
{
public interface IPowerManagement
{
void PreventSystemStandby();
void AllowSystemStandby();
void ScheduleWake(DateTime wakeTimeUtc, string displayName);
}
}