import { ApiProperty } from '@nestjs/swagger'; export class CustomerResponseDto { @ApiProperty() id!: number; @ApiProperty() email!: string; @ApiProperty() firstName!: string; @ApiProperty() lastName!: string; @ApiProperty() phone!: string | null; @ApiProperty() createdAt!: Date; @ApiProperty() updatedAt!: Date; }