server: boundsrequestdto
This commit is contained in:
@ -1,7 +1,10 @@
|
||||
import { Entity, PrimaryGeneratedColumn } from "typeorm"
|
||||
import { ApiProperty } from '@nestjs/swagger';
|
||||
|
||||
// @Entity()
|
||||
// export class Bound {
|
||||
// @PrimaryGeneratedColumn()
|
||||
// id:
|
||||
// }
|
||||
export class BoundsRequestDto {
|
||||
@ApiProperty({
|
||||
description: 'Array of entity IDs to fetch bounds for',
|
||||
example: [11, 12, 13],
|
||||
type: [Number],
|
||||
})
|
||||
list: number[];
|
||||
}
|
Reference in New Issue
Block a user