13 lines
307 B
C#
13 lines
307 B
C#
using System.Collections.Generic;
|
|
using Umbraco.Core.Composing;
|
|
|
|
namespace Umbraco.Web.Routing
|
|
{
|
|
public class ContentFinderCollection : BuilderCollectionBase<IContentFinder>
|
|
{
|
|
public ContentFinderCollection(IEnumerable<IContentFinder> items)
|
|
: base(items)
|
|
{ }
|
|
}
|
|
}
|