use super::id::{MovieGenreId, ShowGenreId};
#[derive(Debug, Clone, serde::Deserialize)]
pub struct MovieGenre {
pub id: MovieGenreId,
pub name: String,
}
#[derive(Debug, Clone, serde::Deserialize)]
pub struct ShowGenre {
pub id: ShowGenreId,
pub name: String,
}