mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-15 15:53:41 +00:00
11 lines
281 B
TypeScript
11 lines
281 B
TypeScript
import { GroupEntry } from './groupEntry';
|
|
import { UserEntry } from './userEntry';
|
|
|
|
export class SimResult {
|
|
groups: GroupEntry[] = [];
|
|
users: UserEntry[] = [];
|
|
enabledUsers: UserEntry[] = [];
|
|
disabledUsers: UserEntry[] = [];
|
|
deletedUsers: UserEntry[] = [];
|
|
}
|