mirror of
https://github.com/bitwarden/browser
synced 2025-12-24 04:04:24 +00:00
10 lines
189 B
TypeScript
10 lines
189 B
TypeScript
export class VerifyEmailRequest {
|
|
userId: string;
|
|
token: string;
|
|
|
|
constructor(userId: string, token: string) {
|
|
this.userId = userId;
|
|
this.token = token;
|
|
}
|
|
}
|