aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/SystemEvents.cs
blob: e4c54c3c521cd581d36afd42859a549cf01713ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using MediaBrowser.Model.System;

namespace Emby.Server.Implementations
{
    public class SystemEvents : ISystemEvents
    {
        public event EventHandler Resume;
        public event EventHandler Suspend;
        public event EventHandler SessionLogoff;
        public event EventHandler SystemShutdown;
    }
}