1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-15 15:53:41 +00:00
Files
directory-connector/src/models/groupEntry.ts
2018-05-02 16:00:59 -04:00

16 lines
336 B
TypeScript

import { Entry } from './entry';
export class GroupEntry extends Entry {
name: string;
userMemberExternalIds = new Set<string>();
groupMemberReferenceIds = new Set<string>();
get displayName(): string {
if (this.name == null) {
return this.referenceId;
}
return this.name;
}
}