Files
Umbraco-CMS/src/Umbraco.Abstractions/PropertyEditors/ManifestValueValidatorCollectionBuilder.cs
2019-11-08 10:58:31 +01:00

10 lines
355 B
C#

using Umbraco.Core.Composing;
namespace Umbraco.Core.PropertyEditors
{
public class ManifestValueValidatorCollectionBuilder : LazyCollectionBuilderBase<ManifestValueValidatorCollectionBuilder, ManifestValueValidatorCollection, IManifestValueValidator>
{
protected override ManifestValueValidatorCollectionBuilder This => this;
}
}