12 lines
280 B
C#
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);
|
|
}
|
|
}
|