jellyfin/Jellyfin.Data/Events/System/PendingRestartEventArgs.cs

11 lines
223 B
C#

using System;
namespace Jellyfin.Data.Events.System
{
/// <summary>
/// An event that fires when there is a pending restart.
/// </summary>
public class PendingRestartEventArgs : EventArgs
{
}
}