12 lines
269 B
C#
12 lines
269 B
C#
using FluentValidation;
|
|
|
|
namespace AutobusApi.Application.Regions.Commands.DeleteRegion;
|
|
|
|
public class DeleteRegionCommandValidator : AbstractValidator<DeleteRegionCommand>
|
|
{
|
|
public DeleteRegionCommandValidator()
|
|
{
|
|
RuleFor(v => v.Id).NotNull();
|
|
}
|
|
}
|