homemanager-be/src/app-building/dto/buildings-search-request.dt...

10 lines
214 B
TypeScript
Raw Normal View History

2023-01-27 16:26:32 +00:00
import { ApiProperty } from '@nestjs/swagger';
import { IsString, MinLength } from 'class-validator';
export class BuildingSearchRequestDto {
@ApiProperty()
@IsString()
@MinLength(2)
searchTerm: string;
}