blob: 85e3b72a69b9d9e5482a94038f0d2b3cc1e24457 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using MediaBrowser.Model.System;
namespace Emby.Server
{
public class PowerManagement : IPowerManagement
{
public void PreventSystemStandby()
{
}
public void AllowSystemStandby()
{
}
}
}
|