mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
apis for groups and collections
This commit is contained in:
9
src/models/response/selectionReadOnlyResponse.ts
Normal file
9
src/models/response/selectionReadOnlyResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export class SelectionReadOnlyResponse {
|
||||
id: string;
|
||||
readOnly: boolean;
|
||||
|
||||
constructor(response: any) {
|
||||
this.id = response.Id;
|
||||
this.readOnly = response.ReadOnly;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user