mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
13 lines
335 B
TypeScript
13 lines
335 B
TypeScript
import { BaseResponse } from "./baseResponse";
|
|
|
|
export class PasswordHistoryResponse extends BaseResponse {
|
|
password: string;
|
|
lastUsedDate: string;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.password = this.getResponseProperty("Password");
|
|
this.lastUsedDate = this.getResponseProperty("LastUsedDate");
|
|
}
|
|
}
|