using FluentValidation; namespace AutobusApi.Application.Countries.Commands.DeleteCountry; public class DeleteCountryCommandValidator : AbstractValidator { public DeleteCountryCommandValidator() { RuleFor(v => v.Id).GreaterThan(0); } }