import { ApiProperty } from '@nestjs/swagger'; export class AddressResponseDto { @ApiProperty() id!: number; @ApiProperty() street!: string; @ApiProperty() city!: string; @ApiProperty() state!: string | null; @ApiProperty() postalCode!: string; @ApiProperty() country!: string; @ApiProperty() readonly customerId!: number; @ApiProperty() createdAt!: Date; @ApiProperty() updatedAt!: Date; }