1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-27 13:43:14 +00:00
Files
jslib/src/models/request/passwordHistoryRequest.ts
2018-07-27 16:44:20 -04:00

10 lines
220 B
TypeScript

export class PasswordHistoryRequest {
password: string;
lastUsedDate: Date;
constructor(response: any) {
this.password = response.Password;
this.lastUsedDate = response.LastUsedDate;
}
}