diff options
Diffstat (limited to 'Jellyfin.Data/Events')
| -rw-r--r-- | Jellyfin.Data/Events/System/PendingRestartEventArgs.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Jellyfin.Data/Events/System/PendingRestartEventArgs.cs b/Jellyfin.Data/Events/System/PendingRestartEventArgs.cs new file mode 100644 index 000000000..17a454969 --- /dev/null +++ b/Jellyfin.Data/Events/System/PendingRestartEventArgs.cs @@ -0,0 +1,11 @@ +using System; + +namespace Jellyfin.Data.Events.System +{ + /// <summary> + /// An event that fires when there is a pending restart. + /// </summary> + public class PendingRestartEventArgs : EventArgs + { + } +} |
