Files
pingvin-share/backend/src/auth/dto/authRegister.dto.ts
2023-02-07 11:23:43 +01:00

9 lines
205 B
TypeScript

import { PickType } from "@nestjs/swagger";
import { UserDTO } from "src/user/dto/user.dto";
export class AuthRegisterDTO extends PickType(UserDTO, [
"email",
"username",
"password",
] as const) {}