namespace Umbraco.Cms.Core.Notifications;
///
/// Notification that occurs when Umbraco has completely shutdown.
///
///
public class UmbracoApplicationStoppedNotification : IUmbracoApplicationLifetimeNotification
{
///
/// Initializes a new instance of the class.
///
/// Indicates whether Umbraco is restarting.
public UmbracoApplicationStoppedNotification(bool isRestarting) => IsRestarting = isRestarting;
///
public bool IsRestarting { get; }
}