19 lines
611 B
C#
19 lines
611 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 abstract class CancelableEnumerableObjectNotification<T> : CancelableObjectNotification<IEnumerable<T>>
|
||
|
|
{
|
||
|
|
protected CancelableEnumerableObjectNotification(T target, EventMessages messages) : base(new [] {target}, messages)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
protected CancelableEnumerableObjectNotification(IEnumerable<T> target, EventMessages messages) : base(target, messages)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|