1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-05 23:53:21 +00:00
Files
directory-connector/src/models/userEntry.ts
2018-05-02 16:00:59 -04:00

16 lines
285 B
TypeScript

import { Entry } from './entry';
export class UserEntry extends Entry {
email: string;
disabled = false;
deleted = false;
get displayName(): string {
if (this.email == null) {
return this.referenceId;
}
return this.email;
}
}