1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-05 23:53:21 +00:00
Files
directory-connector/src/models/entry.ts
2021-12-20 17:14:18 +01:00

9 lines
141 B
TypeScript

export abstract class Entry {
referenceId: string;
externalId: string;
get displayName(): string {
return this.referenceId;
}
}