bitwarden-estensione-browser/common/src/models/view/passwordHistoryView.ts

17 lines
328 B
TypeScript
Raw Normal View History

2018-07-27 22:44:20 +02:00
import { View } from './view';
import { Password } from '../domain/password';
export class PasswordHistoryView implements View {
2019-01-25 15:30:21 +01:00
password: string = null;
lastUsedDate: Date = null;
2018-07-27 22:44:20 +02:00
constructor(ph?: Password) {
if (!ph) {
return;
}
this.lastUsedDate = ph.lastUsedDate;
}
}