// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Microsoft.AspNetCore.Mvc.DataAnnotations { /// /// Abstract class for grouping attributes of type into /// one /// public abstract class ValidationProviderAttribute : Attribute { /// /// Gets instances associated with this attribute. /// /// Sequence of associated with this attribute. public abstract IEnumerable GetValidationAttributes(); } }