Restart for Windows

This commit is contained in:
Mark McDowall
2014-01-13 17:35:16 -08:00
parent f69bb79077
commit aa1a76fe72
8 changed files with 53 additions and 25 deletions
@@ -4,6 +4,15 @@ namespace NzbDrone.Core.Lifecycle
{
public class ApplicationShutdownRequested : IEvent
{
public bool Restarting { get; set; }
public ApplicationShutdownRequested()
{
}
public ApplicationShutdownRequested(bool restarting)
{
Restarting = restarting;
}
}
}