19 lines
572 B
C#
19 lines
572 B
C#
// <copyright file="PendingRestartEventArgs.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CA1711 // Identifiers should not have incorrect suffix
|
|
#pragma warning disable SA1200 // using directive or a using-alias directive is placed outside of a namespace element
|
|
|
|
using System;
|
|
|
|
namespace Jellyfin.Data.Events.System
|
|
{
|
|
/// <summary>
|
|
/// An event that occurs when there is a pending restart.
|
|
/// </summary>
|
|
public class PendingRestartEventArgs : EventArgs
|
|
{
|
|
}
|
|
}
|