// Copyright (c) Umbraco. // See LICENSE for more details. using System.Collections.Generic; using Umbraco.Cms.Core.Events; namespace Umbraco.Cms.Core.Notifications { public abstract class CancelableEnumerableObjectNotification : CancelableObjectNotification> { protected CancelableEnumerableObjectNotification(T target, EventMessages messages) : base(new [] {target}, messages) { } protected CancelableEnumerableObjectNotification(IEnumerable target, EventMessages messages) : base(target, messages) { } } }