12 lines
269 B
C#
12 lines
269 B
C#
using FluentValidation;
|
|
|
|
namespace AutobusApi.Application.Routes.Commands.DeleteRoute;
|
|
|
|
public class DeleteRouteCommandValidator : AbstractValidator<DeleteRouteCommand>
|
|
{
|
|
public DeleteRouteCommandValidator()
|
|
{
|
|
RuleFor(v => v.Id).GreaterThan(0);
|
|
}
|
|
}
|