using System.Collections.Generic;
namespace Umbraco.Core.DependencyInjection
{
///
/// Provides a base class for injected collections.
///
/// The type of the items.
public abstract class InjectCollectionBase : IInjectCollection
{
///
/// Initializes a new instance of the with items.
///
/// The items.
protected InjectCollectionBase(IEnumerable items)
{
Items = items;
}
///
public IEnumerable Items { get; }
}
}