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