sonarr-repo-only/src/NzbDrone.Core/Lifecycle/ApplicationShutdownRequeste...

18 lines
372 B
C#
Raw Normal View History

using NzbDrone.Common.Messaging;
2013-04-19 04:46:18 +00:00
namespace NzbDrone.Core.Lifecycle
{
public class ApplicationShutdownRequested : IEvent
{
2014-01-14 01:35:16 +00:00
public bool Restarting { get; set; }
2013-04-19 04:46:18 +00:00
2014-01-14 01:35:16 +00:00
public ApplicationShutdownRequested()
{
}
public ApplicationShutdownRequested(bool restarting)
{
Restarting = restarting;
}
2013-04-19 04:46:18 +00:00
}
}