mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-21 06:03:13 +02:00
5 lines
159 B
TypeScript
5 lines
159 B
TypeScript
|
|
import { PickType } from "@nestjs/swagger";
|
||
|
|
import { UserDTO } from "./user.dto";
|
||
|
|
|
||
|
|
export class PublicUserDTO extends PickType(UserDTO, ["email"] as const) {}
|