blob: 17a4549699f6757d28e4a5c60a5eb48ed22732da (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
namespace Jellyfin.Data.Events.System
{
/// <summary>
/// An event that fires when there is a pending restart.
/// </summary>
public class PendingRestartEventArgs : EventArgs
{
}
}
|