mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-19 05:23:14 +02:00
5 lines
168 B
TypeScript
5 lines
168 B
TypeScript
import { PartialType } from "@nestjs/mapped-types";
|
|
import { CreateUserDTO } from "./createUser.dto";
|
|
|
|
export class UpdateUserDto extends PartialType(CreateUserDTO) {}
|