mirror of
https://github.com/bitwarden/jslib
synced 2025-12-18 09:13:19 +00:00
10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
export class GeneratedPasswordHistory {
|
|
password: string;
|
|
date: number;
|
|
|
|
constructor(password: string, date: number) {
|
|
this.password = password;
|
|
this.date = date;
|
|
}
|
|
}
|