1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-24 08:33:29 +00:00
Files
browser/libs/common/src/models/request/verify-delete-recover.request.ts

10 lines
181 B
TypeScript

export class VerifyDeleteRecoverRequest {
userId: string;
token: string;
constructor(userId: string, token: string) {
this.userId = userId;
this.token = token;
}
}