1
0
mirror of https://github.com/bitwarden/jslib synced 2026-01-09 03:53:18 +00:00
Files
jslib/common/src/models/request/verifyEmailRequest.ts
2021-12-16 13:36:21 +01:00

10 lines
173 B
TypeScript

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