Files
Umbraco-CMS/src/Umbraco.Infrastructure/Services/Notifications/LanguageSavedNotification.cs
2021-03-24 14:29:15 +01:00

21 lines
577 B
C#

// Copyright (c) Umbraco.
// See LICENSE for more details.
using System.Collections.Generic;
using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Models;
namespace Umbraco.Cms.Infrastructure.Services.Notifications
{
public class LanguageSavedNotification : SavedNotification<ILanguage>
{
public LanguageSavedNotification(ILanguage target, EventMessages messages) : base(target, messages)
{
}
public LanguageSavedNotification(IEnumerable<ILanguage> target, EventMessages messages) : base(target, messages)
{
}
}
}