1
0
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:
Kyle Spearrin
2019-09-25 16:08:56 -04:00
parent 3915e43435
commit d2ef504b40
7 changed files with 83 additions and 3 deletions

View 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;
}
}