mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-10 21:03:56 +08:00
10 lines
332 B
TypeScript
10 lines
332 B
TypeScript
import { CipherRequest } from './cipherRequest';
|
|
import { CollectionRequest } from './collectionRequest';
|
|
import { KvpRequest } from './kvpRequest';
|
|
|
|
export class ImportOrganizationCiphersRequest {
|
|
ciphers: CipherRequest[];
|
|
collections: CollectionRequest[];
|
|
collectionRelationships: Array<KvpRequest<number, number>>;
|
|
}
|