// 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 ILocalizationService when the Save (IDictionaryItem overload) method is called in the API.
///
public class DictionaryItemSavingNotification : SavingNotification
{
///
/// Initializes a new instance of the
///
///
/// Gets the collection of IDictionaryItem objects being saved.
///
///
/// Initializes a new instance of the .
///
public DictionaryItemSavingNotification(IDictionaryItem target, EventMessages messages)
: base(target, messages)
{
}
public DictionaryItemSavingNotification(IEnumerable target, EventMessages messages)
: base(target, messages)
{
}
}