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

verify email apis

This commit is contained in:
Kyle Spearrin
2018-07-12 11:35:04 -04:00
parent 152c44185b
commit 24d608d365
3 changed files with 21 additions and 0 deletions

View File

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