mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
Split jslib into multiple modules (#363)
* Split jslib into multiple modules
This commit is contained in:
9
common/src/models/request/verifyDeleteRecoverRequest.ts
Normal file
9
common/src/models/request/verifyDeleteRecoverRequest.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export class VerifyDeleteRecoverRequest {
|
||||
userId: string;
|
||||
token: string;
|
||||
|
||||
constructor(userId: string, token: string) {
|
||||
this.userId = userId;
|
||||
this.token = token;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user