Files
pingvin-share/backend/src/auth/dto/authRegister.dto.ts
2022-12-05 16:54:15 +01:00

9 lines
210 B
TypeScript

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