Files
Umbraco-CMS/src/Umbraco.Core/Notifications/ContentEmptiedRecycleBinNotification.cs
Alina-Magdalena Tincas 85747593cc Update v14 api docs with info from umbraco docs (#15977)
* update api docs

* small update
2024-04-11 11:19:23 +02:00

28 lines
988 B
C#

// Copyright (c) Umbraco.
// See LICENSE for more details.
using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Models;
namespace Umbraco.Cms.Core.Notifications;
/// <summary>
/// A notification that is used to trigger the IContentService when the EmptyRecycleBin method is called in the API, after the RecycleBin has been deleted.
/// </summary>
public sealed class ContentEmptiedRecycleBinNotification : EmptiedRecycleBinNotification<IContent>
{
/// <summary>
/// Initializes a new instance of the <see cref="ContentEmptyingRecycleBinNotification"/>
/// </summary>
/// <param name="deletedEntities">
/// The collection of deleted IContent object.
/// </param>
/// <param name="messages">
/// Initializes a new instance of the <see cref="EventMessages"/>.
/// </param>
public ContentEmptiedRecycleBinNotification(IEnumerable<IContent> deletedEntities, EventMessages messages)
: base(
deletedEntities, messages)
{
}
}