Files
Umbraco-CMS/src/Umbraco.Core/Notifications/ContentMovedNotification.cs
2022-11-28 23:26:59 +01:00

26 lines
620 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>
/// Called after content has been moved.
/// </summary>
public sealed class ContentMovedNotification : MovedNotification<IContent>
{
public ContentMovedNotification(MoveEventInfo<IContent> target, EventMessages messages)
: base(target, messages)
{
}
public ContentMovedNotification(IEnumerable<MoveEventInfo<IContent>> target, EventMessages messages)
: base(
target,
messages)
{
}
}