mirror of
https://github.com/bitwarden/jslib
synced 2025-12-20 10:13:43 +00:00
14 lines
328 B
TypeScript
14 lines
328 B
TypeScript
import { CipherRequest } from './cipherRequest';
|
|
|
|
import { Cipher } from '../domain/cipher';
|
|
|
|
export class CipherCreateRequest {
|
|
cipher: CipherRequest;
|
|
collectionIds: string[];
|
|
|
|
constructor(cipher: Cipher) {
|
|
this.cipher = new CipherRequest(cipher);
|
|
this.collectionIds = cipher.collectionIds;
|
|
}
|
|
}
|