1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

recover delete apis

This commit is contained in:
Kyle Spearrin
2018-07-13 15:55:02 -04:00
parent 9bc7459eac
commit 51f041a959
4 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
export class DeleteRecoverRequest {
email: string;
}

View File

@@ -0,0 +1,9 @@
export class VerifyDeleteRecoverRequest {
userId: string;
token: string;
constructor(userId: string, token: string) {
this.userId = userId;
this.token = token;
}
}