13 lines
322 B
C#
13 lines
322 B
C#
using System.Collections.Generic;
|
|
using Umbraco.Core.Composing;
|
|
|
|
namespace Umbraco.Core.PackageActions
|
|
{
|
|
public sealed class PackageActionCollection : BuilderCollectionBase<IPackageAction>
|
|
{
|
|
public PackageActionCollection(IEnumerable<IPackageAction> items)
|
|
: base(items)
|
|
{ }
|
|
}
|
|
}
|