mirror of
https://github.com/bitwarden/jslib
synced 2025-12-20 02:03:50 +00:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
export class PasswordHistoryResponse {
|
|
password: string;
|
|
lastUsedDate: string;
|
|
|
|
constructor(response: any) {
|
|
this.password = response.Password;
|
|
this.lastUsedDate = response.LastUsedDate;
|
|
}
|
|
}
|