namespace Umbraco.Cms.Core.Notifications;
///
/// Represents an Umbraco application lifetime (starting, started, stopping, stopped) notification.
///
///
public interface IUmbracoApplicationLifetimeNotification : INotification
{
///
/// Gets a value indicating whether Umbraco is restarting (e.g. after an install or upgrade).
///
///
/// true if Umbraco is restarting; otherwise, false.
///
bool IsRestarting { get; }
}