Files
pingvin-share/backend/src/auth/dto/authRegister.dto.ts
2022-12-05 10:02:19 +01:00

7 lines
203 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) {
}