mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
15 lines
403 B
TypeScript
15 lines
403 B
TypeScript
import { BaseResponse } from "./base.response";
|
|
|
|
export class SelectionReadOnlyResponse extends BaseResponse {
|
|
id: string;
|
|
readOnly: boolean;
|
|
hidePasswords: boolean;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.id = this.getResponseProperty("Id");
|
|
this.readOnly = this.getResponseProperty("ReadOnly");
|
|
this.hidePasswords = this.getResponseProperty("HidePasswords");
|
|
}
|
|
}
|