Add genre strings

This commit is contained in:
2025-05-04 22:30:50 -06:00
parent 343978e3f2
commit 492f054e23
14 changed files with 25 additions and 19 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
use super::{CollectionId, MovieId};
/// A deserialized Collection from the TMDB API
#[derive(Debug, serde::Deserialize)]
#[derive(Debug, Clone, serde::Deserialize)]
pub struct Collection {
/// The collection's TMDB ID
pub id: CollectionId,
@@ -15,7 +15,7 @@ pub struct Collection {
}
/// A deserialized collection item from the TMDB API
#[derive(Debug, serde::Deserialize)]
#[derive(Debug, Clone, serde::Deserialize)]
pub struct Item {
/// The movie's TMDB ID
pub id: MovieId,