mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 17:23:37 +00:00
13 lines
262 B
TypeScript
13 lines
262 B
TypeScript
import { CipherRequest } from './cipherRequest';
|
|
|
|
import { Cipher } from '../domain/cipher';
|
|
|
|
export class CipherWithIdRequest extends CipherRequest {
|
|
id: string;
|
|
|
|
constructor(cipher: Cipher) {
|
|
super(cipher);
|
|
this.id = cipher.id;
|
|
}
|
|
}
|