mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 17:53:39 +00:00
16 lines
383 B
TypeScript
16 lines
383 B
TypeScript
import { PasswordHistoryResponse } from '../response/passwordHistoryResponse';
|
|
|
|
export class PasswordHistoryData {
|
|
password: string;
|
|
lastUsedDate: string;
|
|
|
|
constructor(response?: PasswordHistoryResponse) {
|
|
if (response == null) {
|
|
return;
|
|
}
|
|
|
|
this.password = response.password;
|
|
this.lastUsedDate = response.lastUsedDate;
|
|
}
|
|
}
|