18 lines
572 B
C#
18 lines
572 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 (ILanguage overload) method is called in the API, after the languages have been deleted.
|
|
/// </summary>
|
|
public class LanguageDeletedNotification : DeletedNotification<ILanguage>
|
|
{
|
|
public LanguageDeletedNotification(ILanguage target, EventMessages messages)
|
|
: base(target, messages)
|
|
{
|
|
}
|
|
}
|