import { ProductResponseDto } from '../product'; import { CategoryResponseDto } from './category-response.dto'; import { ApiProperty } from '@nestjs/swagger'; export class CategoryResponseWithRelationsDto extends CategoryResponseDto { @ApiProperty() readonly parent?: CategoryResponseDto; @ApiProperty() readonly subcategories!: CategoryResponseDto[]; @ApiProperty() readonly products!: ProductResponseDto[]; }