2013-04-24 01:56:00 +00:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|