diff --git a/server/src/gis/dto/bound.ts b/server/src/gis/dto/bound.ts index 6b6bdcd..d7e2dfb 100644 --- a/server/src/gis/dto/bound.ts +++ b/server/src/gis/dto/bound.ts @@ -1,7 +1,10 @@ -import { Entity, PrimaryGeneratedColumn } from "typeorm" +import { ApiProperty } from '@nestjs/swagger'; -// @Entity() -// export class Bound { -// @PrimaryGeneratedColumn() -// id: -// } \ No newline at end of file +export class BoundsRequestDto { + @ApiProperty({ + description: 'Array of entity IDs to fetch bounds for', + example: [11, 12, 13], + type: [Number], + }) + list: number[]; +} \ No newline at end of file