mirror of
https://github.com/bitwarden/directory-connector
synced 2026-01-01 08:03:31 +00:00
9 lines
153 B
TypeScript
9 lines
153 B
TypeScript
export abstract class Entry {
|
|
referenceId: string;
|
|
externalId: string;
|
|
|
|
get displayName(): string {
|
|
return this.referenceId;
|
|
}
|
|
}
|