mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-12 02:42:00 +00:00
14 lines
416 B
Rust
14 lines
416 B
Rust
![]() |
use crate::folder_builder::ParentChildViews;
|
||
|
use std::collections::HashMap;
|
||
|
|
||
|
pub enum ImportData {
|
||
|
AppFlowyDataFolder {
|
||
|
view: ParentChildViews,
|
||
|
/// Used to update the [DatabaseViewTrackerList] when importing the database.
|
||
|
database_view_ids_by_database_id: HashMap<String, Vec<String>>,
|
||
|
row_object_ids: Vec<String>,
|
||
|
document_object_ids: Vec<String>,
|
||
|
database_object_ids: Vec<String>,
|
||
|
},
|
||
|
}
|