2021-07-12 15:28:46 -06:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2021-02-18 11:06:02 +01:00
|
|
|
using Umbraco.Cms.Core.Composing;
|
2016-07-29 10:55:37 +02:00
|
|
|
|
2021-02-18 11:06:02 +01:00
|
|
|
namespace Umbraco.Cms.Core.Routing
|
2016-07-29 10:55:37 +02:00
|
|
|
{
|
|
|
|
|
public class UrlProviderCollection : BuilderCollectionBase<IUrlProvider>
|
|
|
|
|
{
|
2021-07-12 15:28:46 -06:00
|
|
|
public UrlProviderCollection(Func<IEnumerable<IUrlProvider>> items) : base(items)
|
|
|
|
|
{
|
|
|
|
|
}
|
2016-07-29 10:55:37 +02:00
|
|
|
}
|
|
|
|
|
}
|