import { ApiProperty } from '@nestjs/swagger'; export class CreateCityDto { @ApiProperty({ example: 'Москва' }) name: string; @ApiProperty({ example: 55.7558 }) lat: number; @ApiProperty({ example: 37.6173 }) lng: number; } export class CreateDistrictDto { @ApiProperty({ example: 'Центральный' }) name: string; }