import { ApiProperty, ApiPropertyOptional } from "@nestjs/swagger"; import { LocationDto } from "./create-request-management.dto"; export class ExpertCompleteLocationsDto { @ApiProperty({ type: LocationDto }) firstPartyLocation: LocationDto; @ApiPropertyOptional({ type: LocationDto }) secondPartyLocation?: LocationDto; }