mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-15 15:53:41 +00:00
16 lines
336 B
TypeScript
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;
|
|
}
|
|
}
|