forgot a struct

This commit is contained in:
SadlyNotSappho 2023-09-26 12:03:52 -07:00
parent 52f2c69d4b
commit efe9e18692
1 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,11 @@
pub struct Data {
pub vulnerable_folders: Vec<Folder>,
pub pinged_home: bool,
pub known_malware: Vec<Malware>,
pub cam_access: bool,
pub mic_access: bool,
}
pub struct Folder { pub struct Folder {
pub path: String, pub path: String,
pub r#type: FolderType, pub r#type: FolderType,