diff options
Diffstat (limited to 'Jellyfin.Server/PowerManagement.cs')
| -rw-r--r-- | Jellyfin.Server/PowerManagement.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Jellyfin.Server/PowerManagement.cs b/Jellyfin.Server/PowerManagement.cs new file mode 100644 index 000000000..c27c51893 --- /dev/null +++ b/Jellyfin.Server/PowerManagement.cs @@ -0,0 +1,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) + { + + } + } +} |
