using FluentValidation; using Imprink.Application.Users.Commands; namespace Imprink.Application.Users.Validation; public class SetUserFullNameCommandValidator : AbstractValidator { public SetUserFullNameCommandValidator() { RuleFor(x => x.FirstName) .NotEmpty().WithMessage("FirstName is required.") .Length(1, 50).WithMessage("FirstName must be between 1 and 50 characters."); RuleFor(x => x.LastName) .NotEmpty().WithMessage("LastName is required.") .Length(1, 50).WithMessage("LastName must be between 1 and 50 characters."); } }