abstract_form/validators/_all
library
Classes
-
ModelValidator
-
A base abstract class for model validation.
This class provides default implementations for common validation methods,
such as validating a model, retrieving validation messages, and formatting messages.
-
PropertyValidator<T>
-
A base abstract class for validating a specific property of a model.
This class is generic and can be used to validate properties of any type
T
.
Subclasses must implement the validate
method to provide custom validation logic.