mirror of
https://github.com/bitwarden/jslib
synced 2025-12-27 13:43:14 +00:00
10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
export class PasswordHistoryRequest {
|
|
password: string;
|
|
lastUsedDate: Date;
|
|
|
|
constructor(response: any) {
|
|
this.password = response.Password;
|
|
this.lastUsedDate = response.LastUsedDate;
|
|
}
|
|
}
|