Merge pull request #10318 from abpframework/liangshiwei/features

Enhance NumericValueValidator
pull/10373/head
Halil İbrahim Kalkan 4 years ago committed by GitHub
commit 92009e38f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -20,7 +20,8 @@ namespace Volo.Abp.Validation.StringValues
public NumericValueValidator()
{
MinValue = int.MinValue;
MaxValue = int.MaxValue;
}
public NumericValueValidator(int minValue = int.MinValue, int maxValue = int.MaxValue)

Loading…
Cancel
Save