Files
Umbraco-CMS/src/Umbraco.Core/Routing/ContentFinderCollection.cs

14 lines
329 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using Umbraco.Cms.Core.Composing;
2016-07-31 19:44:48 +02:00
namespace Umbraco.Cms.Core.Routing
2016-07-31 19:44:48 +02:00
{
public class ContentFinderCollection : BuilderCollectionBase<IContentFinder>
{
public ContentFinderCollection(Func<IEnumerable<IContentFinder>> items) : base(items)
{
}
2016-07-31 19:44:48 +02:00
}
}