Radarr/src/NzbDrone.Core/Lifecycle/ApplicationShutdownRequeste...

15 lines
306 B
C#

using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.Lifecycle
{
public class ApplicationShutdownRequested : IEvent
{
public bool Restarting { get; }
public ApplicationShutdownRequested(bool restarting = false)
{
Restarting = restarting;
}
}
}