import { CustomerResponseDto } from '../customer'; import { AddressResponseDto } from './address-response.dto'; import { ApiProperty } from '@nestjs/swagger'; export class AddressResponseWithRelationsDto extends AddressResponseDto { @ApiProperty() readonly customer!: CustomerResponseDto; }