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

10 lines
214 B
TypeScript

import { ApiProperty } from '@nestjs/swagger';
import { IsString, MinLength } from 'class-validator';
export class BuildingSearchRequestDto {
@ApiProperty()
@IsString()
@MinLength(2)
searchTerm: string;
}