1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-22 03:03:22 +00:00
Files
directory-connector/src/models/entry.ts
Kyle Spearrin 3981cb95fc sort results
2018-05-02 17:00:31 -04:00

9 lines
153 B
TypeScript

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