Files
Umbraco-CMS/src/Umbraco.Infrastructure/Services/Notifications/SortingNotification.cs

18 lines
470 B
C#

// Copyright (c) Umbraco.
// See LICENSE for more details.
using System.Collections.Generic;
using Umbraco.Cms.Core.Events;
namespace Umbraco.Cms.Infrastructure.Services.Notifications
{
public class SortingNotification<T> : CancelableEnumerableObjectNotification<T>
{
public SortingNotification(IEnumerable<T> target, EventMessages messages) : base(target, messages)
{
}
public IEnumerable<T> SortedEntities => Target;
}
}