mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 11:18:17 +00:00
6 lines
191 B
TypeScript
6 lines
191 B
TypeScript
import { PartialType } from '@nestjs/mapped-types';
|
|
|
|
import { CreateFirstMileDto } from './create-first-mile.dto';
|
|
|
|
export class UpdateFirstMileDto extends PartialType(CreateFirstMileDto) {}
|