12 lines
250 B
C#
12 lines
250 B
C#
using FluentValidation;
|
|
|
|
namespace AutobusApi.Application.Regions.Queries.GetRegion;
|
|
|
|
public class GetRegionQueryValidator : AbstractValidator<GetRegionQuery>
|
|
{
|
|
public GetRegionQueryValidator()
|
|
{
|
|
RuleFor(v => v.Id).NotNull();
|
|
}
|
|
}
|