mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
importers for lastpass, bitwarden, and keepassx
This commit is contained in:
13
src/models/domain/importResult.ts
Normal file
13
src/models/domain/importResult.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { CipherView } from '../view/cipherView';
|
||||
import { CollectionView } from '../view/collectionView';
|
||||
import { FolderView } from '../view/folderView';
|
||||
|
||||
export class ImportResult {
|
||||
success = false;
|
||||
errorMessage: string;
|
||||
ciphers: CipherView[] = [];
|
||||
folders: FolderView[] = [];
|
||||
folderRelationships: Map<number, number> = new Map<number, number>();
|
||||
collections: CollectionView[] = [];
|
||||
collectionRelationships: Map<number, number> = new Map<number, number>();
|
||||
}
|
||||
Reference in New Issue
Block a user