mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-07 08:25:43 +00:00
5 lines
181 B
TypeScript
5 lines
181 B
TypeScript
import { PartialType } from '@nestjs/mapped-types';
|
|
import { CreateVehicleDto } from './create-vehicle.dto';
|
|
|
|
export class UpdateVehicleDto extends PartialType(CreateVehicleDto) {}
|