mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
f77a2feeef
* Stylecop Rules and Fixes
15 lines
309 B
C#
15 lines
309 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;
|
|
}
|
|
}
|
|
}
|