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