using FluentValidation; namespace AutobusApi.Application.Addresses.Commands.DeleteAddress; public class DeleteAddressCommandValidator : AbstractValidator { public DeleteAddressCommandValidator() { RuleFor(v => v.Id).GreaterThan(0); } }