10 lines
355 B
C#
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;
|
|
}
|
|
}
|