mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
verify email apis
This commit is contained in:
9
src/models/request/verifyEmailRequest.ts
Normal file
9
src/models/request/verifyEmailRequest.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export class VerifyEmailRequest {
|
||||
userId: string;
|
||||
token: string;
|
||||
|
||||
constructor(userId: string, token: string) {
|
||||
this.userId = userId;
|
||||
this.token = token;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user