mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
12 lines
243 B
TypeScript
12 lines
243 B
TypeScript
import { UserEntry } from '../userEntry';
|
|
|
|
export class UserResponse {
|
|
externalId: string;
|
|
displayName: string;
|
|
|
|
constructor(u: UserEntry) {
|
|
this.externalId = u.externalId;
|
|
this.displayName = u.displayName;
|
|
}
|
|
}
|