mirror of
https://github.com/bitwarden/browser
synced 2025-12-22 19:23:52 +00:00
org collection create and get template
This commit is contained in:
13
src/models/selectionReadOnly.ts
Normal file
13
src/models/selectionReadOnly.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
export class SelectionReadOnly {
|
||||
static template(): SelectionReadOnly {
|
||||
return new SelectionReadOnly('00000000-0000-0000-0000-000000000000', false);
|
||||
}
|
||||
|
||||
id: string;
|
||||
readOnly: boolean;
|
||||
|
||||
constructor(id: string, readOnly: boolean) {
|
||||
this.id = id;
|
||||
this.readOnly = readOnly;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user