aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System/ISystemEvents.cs
blob: 8c47d6fbfb927a7b170e60c8b532079fa85a98aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace MediaBrowser.Model.System
{
    public interface ISystemEvents
    {
        event EventHandler Resume;
        event EventHandler Suspend;
        event EventHandler SessionLogoff;
        event EventHandler SystemShutdown;
    }
}