mirror of
https://github.com/bitwarden/jslib
synced 2025-12-22 19:23:24 +00:00
send password history to server
This commit is contained in:
9
src/models/response/passwordHistoryResponse.ts
Normal file
9
src/models/response/passwordHistoryResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export class PasswordHistoryResponse {
|
||||
password: string;
|
||||
lastUsedDate: Date;
|
||||
|
||||
constructor(response: any) {
|
||||
this.password = response.Password;
|
||||
this.lastUsedDate = response.LastUsedDate;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user