5 lines
173 B
TypeScript
5 lines
173 B
TypeScript
import { PickType } from "@nestjs/swagger";
|
|
import { UserDTO } from "src/user/dto/user.dto";
|
|
|
|
export class EnableTotpDTO extends PickType(UserDTO, ["password"] as const) {}
|