import { AddressResponseDto } from '../address'; import { OrderResponseDto } from '../order'; import { CustomerResponseDto } from './customer-response.dto'; import { ApiProperty } from '@nestjs/swagger'; export class CustomerResponseWithRelationsDto extends CustomerResponseDto { @ApiProperty() readonly address?: AddressResponseDto; @ApiProperty() readonly orders!: OrderResponseDto[]; }