aspnetcore/src/Microsoft.AspNet.Mvc.ModelB.../Validation/IModelValidator.cs

12 lines
254 B
C#

using System.Collections.Generic;
namespace Microsoft.AspNet.Mvc.ModelBinding
{
public interface IModelValidator
{
bool IsRequired { get; }
IEnumerable<ModelValidationResult> Validate(ModelValidationContext context);
}
}