forked from Yara724/api
12 lines
334 B
TypeScript
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;
|
|
}
|
|
|