bitwarden-estensione-browser/libs/common/src/auth/models/request/verify-otp.request.ts

8 lines
103 B
TypeScript

export class VerifyOTPRequest {
OTP: string;
constructor(OTP: string) {
this.OTP = OTP;
}
}