Files
Umbraco-CMS/src/Umbraco.Core/Notifications/DictionaryItemDeletedNotification.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

27 lines
971 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 ILocalizationService when the Delete (IDictionaryItem overload) method is called in the API, after the dictionary items has been deleted.
/// </summary>
public class DictionaryItemDeletedNotification : DeletedNotification<IDictionaryItem>
{
/// <summary>
/// Initializes a new instance of the <see cref="DictionaryItemDeletedNotification"/>.
/// </summary>
/// <param name="target">
/// Gets the collection of the deleted IDictionaryItem objects.
/// </param>
/// <param name="messages">
/// Initializes a new instance of the <see cref="EventMessages"/>.
/// </param>
public DictionaryItemDeletedNotification(IDictionaryItem target, EventMessages messages)
: base(target, messages)
{
}
}