1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-20 02:03:50 +00:00
Files
jslib/src/models/response/passwordHistoryResponse.ts
2018-08-20 16:01:26 -04:00

10 lines
223 B
TypeScript

export class PasswordHistoryResponse {
password: string;
lastUsedDate: string;
constructor(response: any) {
this.password = response.Password;
this.lastUsedDate = response.LastUsedDate;
}
}