mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 13:53:34 +00:00
14 lines
312 B
TypeScript
14 lines
312 B
TypeScript
import { Cipher } from "../domain/cipher";
|
|
|
|
import { CipherRequest } from "./cipher.request";
|
|
|
|
export class CipherShareRequest {
|
|
cipher: CipherRequest;
|
|
collectionIds: string[];
|
|
|
|
constructor(cipher: Cipher) {
|
|
this.cipher = new CipherRequest(cipher);
|
|
this.collectionIds = cipher.collectionIds;
|
|
}
|
|
}
|