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