1#[cfg(feature = "commands")] 2pub mod list; 3 4#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] 5pub struct Genre { 6 pub id: u64, 7 pub name: String, 8}