Resvolution - UrlSegmentProvider

This commit is contained in:
Stephan
2016-08-16 10:12:59 +02:00
parent 0817ffdd28
commit 4e368f8d42
10 changed files with 49 additions and 66 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections.Generic;
using Umbraco.Core.DependencyInjection;
namespace Umbraco.Core.Strings
{
public class UrlSegmentProviderCollection : InjectCollectionBase<IUrlSegmentProvider>
{
public UrlSegmentProviderCollection(IEnumerable<IUrlSegmentProvider> items)
: base(items)
{ }
}
}