Files
Umbraco-CMS/src/Umbraco.Core/PropertyEditors/ManifestValueValidatorCollectionBuilder.cs

15 lines
503 B
C#
Raw Normal View History

2018-03-16 09:06:44 +01:00
using LightInject;
using Umbraco.Core.Composing;
namespace Umbraco.Core.PropertyEditors
{
internal class ManifestValueValidatorCollectionBuilder : LazyCollectionBuilderBase<ManifestValueValidatorCollectionBuilder, ManifestValueValidatorCollection, IManifestValueValidator>
{
public ManifestValueValidatorCollectionBuilder(IServiceContainer container)
: base(container)
{ }
protected override ManifestValueValidatorCollectionBuilder This => this;
}
}