mirror of
https://github.com/bitwarden/jslib
synced 2026-01-09 03:53:18 +00:00
10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
export class VerifyEmailRequest {
|
|
userId: string;
|
|
token: string;
|
|
|
|
constructor(userId: string, token: string) {
|
|
this.userId = userId;
|
|
this.token = token;
|
|
}
|
|
}
|