1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

collection externalId

This commit is contained in:
Kyle Spearrin
2019-03-07 15:17:58 -05:00
parent 3b3b71d841
commit 79fea92b81
6 changed files with 15 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ export class CollectionView implements View, ITreeNodeObject {
id: string = null;
organizationId: string = null;
name: string = null;
externalId: string = null;
readOnly: boolean = null;
constructor(c?: Collection) {
@@ -17,5 +18,6 @@ export class CollectionView implements View, ITreeNodeObject {
this.id = c.id;
this.organizationId = c.organizationId;
this.readOnly = c.readOnly;
this.externalId = c.externalId;
}
}