import { ApiProperty } from '@nestjs/swagger'; export class ProductResponseDto { @ApiProperty() id!: number; @ApiProperty() name!: string; @ApiProperty() description!: string | null; @ApiProperty() price!: number; @ApiProperty() sku!: string; @ApiProperty() inStock!: boolean; @ApiProperty() weight!: number | null; @ApiProperty() createdAt!: Date; @ApiProperty() updatedAt!: Date; @ApiProperty() readonly categoryId!: number | null; }