namespace CMSMicroservice.Application.UserCQ.Commands.VerifyOtpToken; public class VerifyOtpTokenCommandValidator : AbstractValidator { public VerifyOtpTokenCommandValidator() { RuleFor(model => model.Mobile) .NotEmpty(); RuleFor(model => model.Purpose) .NotEmpty(); RuleFor(model => model.Code) .NotEmpty(); } public Func>> ValidateValue => async (model, propertyName) => { var result = await ValidateAsync(ValidationContext.CreateWithOptions((VerifyOtpTokenCommand)model, x => x.IncludeProperties(propertyName))); if (result.IsValid) return Array.Empty(); return result.Errors.Select(e => e.ErrorMessage); }; }