mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-24 05:22:52 +00:00
12 lines
224 B
C#
12 lines
224 B
C#
using System;
|
|
using MediaBrowser.Model.System;
|
|
|
|
namespace Emby.Server
|
|
{
|
|
public class CoreSystemEvents : ISystemEvents
|
|
{
|
|
public event EventHandler Resume;
|
|
public event EventHandler Suspend;
|
|
}
|
|
}
|