1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-09 05:57:40 +02:00
bitwarden-browser/libs/common/src/models/request/verifyDeleteRecoverRequest.ts
2022-06-03 16:24:40 +02:00

10 lines
181 B
TypeScript

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