1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-24 04:04:24 +00:00
Files
browser/src/models/request/verifyEmailRequest.ts
2018-07-12 11:35:04 -04:00

10 lines
189 B
TypeScript

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