Files
yara724api/src/request-management/dto/expert-complete-locations.dto.ts
2026-04-06 14:15:31 +03:30

12 lines
334 B
TypeScript

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;
}