1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-09 05:57:40 +02:00
bitwarden-browser/common/src/models/request/passwordHintRequest.ts

8 lines
124 B
TypeScript
Raw Normal View History

2018-01-20 20:12:18 +01:00
export class PasswordHintRequest {
email: string;
constructor(email: string) {
this.email = email;
}
}