1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00
Files
browser/src/models/response/selectionReadOnlyResponse.ts
2018-07-06 12:40:43 -04:00

10 lines
196 B
TypeScript

export class SelectionReadOnlyResponse {
id: string;
readOnly: boolean;
constructor(response: any) {
this.id = response.Id;
this.readOnly = response.ReadOnly;
}
}