import { ApiProperty } from '@nestjs/swagger'; export class CityResponseDto { @ApiProperty() id: string; @ApiProperty() name: string; @ApiProperty() lat: string; @ApiProperty() lng: string; } export class DistrictResponseDto { @ApiProperty() id: string; @ApiProperty() cityId: string; @ApiProperty() name: string; }