autobus-api_old/AutobusApi.Application/Countries/Commands/DeleteCountry/DeleteCountryCommandValidator.cs

12 lines
280 B
C#

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