mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
6 lines
177 B
TypeScript
6 lines
177 B
TypeScript
import { PartialType } from "@nestjs/swagger";
|
|
|
|
import { CreateBookingDto } from "./create-booking.dto";
|
|
|
|
export class UpdateBookingDto extends PartialType(CreateBookingDto) {}
|