mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
12 lines
294 B
TypeScript
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;
|
|
}
|
|
}
|