1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-20 18:23:13 +00:00

models for entries

This commit is contained in:
Kyle Spearrin
2018-04-27 22:53:46 -04:00
parent e8351c3246
commit 39f760e135
5 changed files with 29 additions and 9 deletions

7
src/models/groupEntry.ts Normal file
View File

@@ -0,0 +1,7 @@
import { Entry } from './entry';
export class GroupEntry extends Entry {
name: string;
userMemberExternalIds = new Set<string>();
groupMemberReferenceIds = new Set<string>();
}