mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 17:53:39 +00:00
10 lines
183 B
TypeScript
10 lines
183 B
TypeScript
export class GeneratedPasswordHistory {
|
|
password: string;
|
|
date: number;
|
|
|
|
constructor(password: string, date: number) {
|
|
this.password = password;
|
|
this.date = date;
|
|
}
|
|
}
|