mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-10 21:03:56 +08: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;
|
|
}
|
|
}
|