1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-01-07 02:53:24 +00:00
Files
directory-connector/src/models/groupEntry.ts
2021-12-20 17:14:18 +01:00

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;
}
}