aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/PowerManagement.cs
blob: c27c518937e82f2247f6cdde60ecff2c1fb2228e (plain)
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)
        {

        }
    }
}