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

10 lines
197 B
TypeScript
Raw Normal View History

2018-07-13 21:55:02 +02:00
export class VerifyDeleteRecoverRequest {
userId: string;
token: string;
constructor(userId: string, token: string) {
this.userId = userId;
this.token = token;
}
}