using FluentValidation; namespace AutobusApi.Application.VehicleEnrollments.Commands.DeleteVehicleEnrollment; public class DeleteVehicleEnrollmentCommandValidator : AbstractValidator { public DeleteVehicleEnrollmentCommandValidator() { RuleFor(v => v.Id).GreaterThan(0); } }