Files
pingvin-share/backend/src/auth/dto/verifyTotp.dto.ts
2022-12-26 12:57:54 +01:00

9 lines
253 B
TypeScript

import { PickType } from "@nestjs/mapped-types";
import { IsString } from "class-validator";
import { UserDTO } from "src/user/dto/user.dto";
export class VerifyTotpDTO extends PickType(UserDTO, ["password"] as const) {
@IsString()
code: string;
}