bitwarden-estensione-browser/libs/common/src/models/request/passwordHintRequest.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
114 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;
}
}