mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
export class VerifyDeleteRecoverRequest {
|
|
userId: string;
|
|
token: string;
|
|
|
|
constructor(userId: string, token: string) {
|
|
this.userId = userId;
|
|
this.token = token;
|
|
}
|
|
}
|