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

12 lines
285 B
TypeScript

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