mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-28 00:50:56 +00:00
5 lines
177 B
TypeScript
5 lines
177 B
TypeScript
import { PartialType } from '@nestjs/mapped-types';
|
|
import { CreateDriverDto } from './create-driver.dto';
|
|
|
|
export class UpdateDriverDto extends PartialType(CreateDriverDto) {}
|