PendingRestartEventArgs.cs 224 B

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