1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-20 02:03:50 +00:00
Files
jslib/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;
}
}