Files
pingvin-share/backend/src/auth/dto/enableTotp.dto.ts
2025-01-21 18:44:06 +01:00

7 lines
110 B
TypeScript

import { IsString } from "class-validator";
export class EnableTotpDTO {
@IsString()
password: string;
}