mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 22:33:35 +00:00
10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
export default class PasswordHistory {
|
|
password: string;
|
|
date: number;
|
|
|
|
constructor(password: string, date: number) {
|
|
this.password = password;
|
|
this.date = date;
|
|
}
|
|
}
|