mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 18:23:31 +00:00
14 lines
327 B
TypeScript
14 lines
327 B
TypeScript
import { CipherRequest } from './cipherRequest';
|
|
|
|
import { Cipher } from '../domain/cipher';
|
|
|
|
export class CipherShareRequest {
|
|
cipher: CipherRequest;
|
|
collectionIds: string[];
|
|
|
|
constructor(cipher: Cipher) {
|
|
this.cipher = new CipherRequest(cipher);
|
|
this.collectionIds = cipher.collectionIds;
|
|
}
|
|
}
|