mirror of
https://github.com/bitwarden/browser
synced 2026-01-09 12:03:33 +00:00
8 lines
120 B
TypeScript
8 lines
120 B
TypeScript
export class PreloginRequest {
|
|
email: string;
|
|
|
|
constructor(email: string) {
|
|
this.email = email;
|
|
}
|
|
}
|