bitwarden-estensione-browser/apps/cli/src/models/response/passwordHistoryResponse.ts

12 lines
285 B
TypeScript
Raw Normal View History

2021-12-20 18:04:00 +01:00
import { PasswordHistoryView } from "jslib-common/models/view/passwordHistoryView";
export class PasswordHistoryResponse {
2021-12-20 18:04:00 +01:00
lastUsedDate: Date;
password: string;
2021-12-20 18:04:00 +01:00
constructor(o: PasswordHistoryView) {
this.lastUsedDate = o.lastUsedDate;
this.password = o.password;
}
}