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