12 lines
329 B
C#
12 lines
329 B
C#
using FluentValidation;
|
|
|
|
namespace AutobusApi.Application.VehicleEnrollments.Commands.DeleteVehicleEnrollment;
|
|
|
|
public class DeleteVehicleEnrollmentCommandValidator : AbstractValidator<DeleteVehicleEnrollmentCommand>
|
|
{
|
|
public DeleteVehicleEnrollmentCommandValidator()
|
|
{
|
|
RuleFor(v => v.Id).GreaterThan(0);
|
|
}
|
|
}
|