12 lines
260 B
C#
12 lines
260 B
C#
using FluentValidation;
|
|
|
|
namespace AutobusApi.Application.Buses.Commands.DeleteBus;
|
|
|
|
public class DeleteBusCommandValidator : AbstractValidator<DeleteBusCommand>
|
|
{
|
|
public DeleteBusCommandValidator()
|
|
{
|
|
RuleFor(v => v.Id).GreaterThan(0);
|
|
}
|
|
}
|