// Copyright (c) Umbraco. // See LICENSE for more details. using Umbraco.Cms.Core.Events; using Umbraco.Cms.Core.Models; namespace Umbraco.Cms.Core.Notifications; /// /// A notification that is used to trigger the IContentService when the Delete and EmptyRecycleBin methods are called in the API. /// public sealed class ContentDeletedNotification : DeletedNotification { public ContentDeletedNotification(IContent target, EventMessages messages) : base(target, messages) { } }