2016-08-16 10:12:59 +02:00
|
|
|
|
using System.Collections.Generic;
|
2017-05-30 15:46:25 +02:00
|
|
|
|
using Umbraco.Core.Composing;
|
2016-08-16 10:12:59 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Strings
|
|
|
|
|
|
{
|
2016-08-16 10:25:31 +02:00
|
|
|
|
public class UrlSegmentProviderCollection : BuilderCollectionBase<IUrlSegmentProvider>
|
2016-08-16 10:12:59 +02:00
|
|
|
|
{
|
|
|
|
|
|
public UrlSegmentProviderCollection(IEnumerable<IUrlSegmentProvider> items)
|
|
|
|
|
|
: base(items)
|
|
|
|
|
|
{ }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|