1use crate::prelude::*; 2 3use std::path::PathBuf; 4 5#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] 6pub struct Directory { 7 pub path: PathBuf, 8 pub library_file: Option<PathBuf> 9}