mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
9 lines
141 B
TypeScript
9 lines
141 B
TypeScript
export abstract class Entry {
|
|
referenceId: string;
|
|
externalId: string;
|
|
|
|
get displayName(): string {
|
|
return this.referenceId;
|
|
}
|
|
}
|