mirror of
https://github.com/bitwarden/directory-connector
synced 2026-01-07 02:53:24 +00:00
16 lines
308 B
TypeScript
16 lines
308 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;
|
|
}
|
|
}
|