use serde::{Deserialize, Serialize}; #[derive(Debug, Serialize, Deserialize, Clone)] pub struct GogSettings { pub enabled: bool, pub location: Option, pub wine_c_drive: Option, #[cfg(target_family = "unix")] pub create_symlinks: bool, }