bitwarden-estensione-browser/libs/common/src/models/request/verifyEmailRequest.ts

10 lines
173 B
TypeScript

export class VerifyEmailRequest {
userId: string;
token: string;
constructor(userId: string, token: string) {
this.userId = userId;
this.token = token;
}
}