mirror of
https://github.com/bitwarden/browser
synced 2025-12-22 11:13:46 +00:00
11 lines
326 B
TypeScript
11 lines
326 B
TypeScript
import { OrganizationUserType } from '../../enums/organizationUserType';
|
|
|
|
import { SelectionReadOnlyRequest } from './selectionReadOnlyRequest';
|
|
|
|
export class OrganizationUserInviteRequest {
|
|
emails: string[] = [];
|
|
type: OrganizationUserType;
|
|
accessAll: boolean;
|
|
collections: SelectionReadOnlyRequest[] = [];
|
|
}
|