1
0
mirror of https://github.com/bitwarden/jslib synced 2026-01-11 13:03:17 +00:00
Files
jslib/src/models/response/selectionReadOnlyResponse.ts
2019-03-01 00:13:37 -05:00

13 lines
328 B
TypeScript

import { BaseResponse } from './baseResponse';
export class SelectionReadOnlyResponse extends BaseResponse {
id: string;
readOnly: boolean;
constructor(response: any) {
super(response);
this.id = this.getResponseProperty('Id');
this.readOnly = this.getResponseProperty('ReadOnly');
}
}