1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00
Files
browser/common/src/models/request/verifyDeleteRecoverRequest.ts
2021-12-16 13:36:21 +01:00

10 lines
181 B
TypeScript

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