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

12 lines
224 B
C#
Raw Normal View History

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