1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
using System; using MediaBrowser.Model.System; namespace Jellyfin.Server.Native { public class PowerManagement : IPowerManagement { public void PreventSystemStandby() { } public void AllowSystemStandby() { } public void ScheduleWake(DateTime wakeTimeUtc, string displayName) { } } }