mirror of
https://github.com/bitwarden/browser
synced 2026-01-05 01:53:55 +00:00
10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
export class PasswordHistory {
|
|
password: string;
|
|
date: number;
|
|
|
|
constructor(password: string, date: number) {
|
|
this.password = password;
|
|
this.date = date;
|
|
}
|
|
}
|