1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00
Files
browser/src/models/response/passwordHistoryResponse.ts
2018-07-30 11:33:50 -04:00

12 lines
294 B
TypeScript

import { PasswordHistoryView } from 'jslib/models/view/passwordHistoryView';
export class PasswordHistoryResponse {
lastUsedDate: Date;
password: string;
constructor(o: PasswordHistoryView) {
this.lastUsedDate = o.lastUsedDate;
this.password = o.password;
}
}