1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-23 11:43:51 +00:00
Files
jslib/src/models/request/verifyDeleteRecoverRequest.ts
2018-07-13 15:55:02 -04:00

10 lines
197 B
TypeScript

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