server: boundsrequestdto

This commit is contained in:
2025-09-24 17:49:33 +09:00
parent eefb514098
commit 7dd7878e49

View File

@ -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[];
}