mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +00:00
9 lines
268 B
TypeScript
9 lines
268 B
TypeScript
import { CipherView } from '../../models/view';
|
|
|
|
export class CipherImportContext {
|
|
lowerProperty: string;
|
|
constructor(public importRecord: any, public property: string, public cipher: CipherView) {
|
|
this.lowerProperty = property.toLowerCase();
|
|
}
|
|
}
|