// 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 EmptyRecycleBin method is called in the API, after the RecycleBin has been deleted.
///
public sealed class ContentEmptiedRecycleBinNotification : EmptiedRecycleBinNotification
{
///
/// Initializes a new instance of the
///
///
/// The collection of deleted IContent object.
///
///
/// Initializes a new instance of the .
///
public ContentEmptiedRecycleBinNotification(IEnumerable deletedEntities, EventMessages messages)
: base(
deletedEntities, messages)
{
}
}