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

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