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