14 lines
415 B
C#
14 lines
415 B
C#
using Umbraco.Core.Composing;
|
|
|
|
namespace Umbraco.Web.Routing
|
|
{
|
|
public class ContentFinderCollectionBuilder : OrderedCollectionBuilderBase<ContentFinderCollectionBuilder, ContentFinderCollection, IContentFinder>
|
|
{
|
|
public ContentFinderCollectionBuilder(IContainer container)
|
|
: base(container)
|
|
{ }
|
|
|
|
protected override ContentFinderCollectionBuilder This => this;
|
|
}
|
|
}
|