mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-29 06:21:56 +01:00
12 lines
224 B
C#
12 lines
224 B
C#
using System;
|
|
|
|
namespace Jellyfin.Data.Events.System
|
|
{
|
|
/// <summary>
|
|
/// An event that occurs when there is a pending restart.
|
|
/// </summary>
|
|
public class PendingRestartEventArgs : EventArgs
|
|
{
|
|
}
|
|
}
|