mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-21 01:49:57 +02:00
18 lines
372 B
C#
18 lines
372 B
C#
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.Lifecycle
|
|
{
|
|
public class ApplicationShutdownRequested : IEvent
|
|
{
|
|
public bool Restarting { get; set; }
|
|
|
|
public ApplicationShutdownRequested()
|
|
{
|
|
}
|
|
|
|
public ApplicationShutdownRequested(bool restarting)
|
|
{
|
|
Restarting = restarting;
|
|
}
|
|
}
|
|
} |