mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-11 10:27:01 +02:00
5 lines
150 B
TypeScript
5 lines
150 B
TypeScript
import { PartialType } from "@nestjs/mapped-types";
|
|
import { UserDTO } from "./user.dto";
|
|
|
|
export class UpdateUserDto extends PartialType(UserDTO) {}
|