use crate::value_objects::Layout; pub type LayoutPresetId = u16; #[derive(Debug, Clone)] pub struct LayoutPreset { pub id: LayoutPresetId, pub name: String, pub layout: Layout, }