1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-15 07:43:45 +00:00

Provide owner with Provider client org create requst (#444)

This commit is contained in:
Matt Gibson
2021-07-30 08:11:12 -05:00
committed by GitHub
parent 80cb4e702f
commit fdf0eb989b
3 changed files with 9 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
import { OrganizationCreateRequest } from '../organizationCreateRequest';
export class ProviderOrganizationCreateRequest {
constructor(public clientOwnerEmail: string, public organizationCreateRequest: OrganizationCreateRequest) { }
}