1
2
3
4
5
6
7
8
9
10
11
12
use serde::{Deserialize, Serialize};

#[cfg(feature = "commands")]
pub mod details;

#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
pub struct CollectionBase {
    pub id: u64,
    pub name: String,
    pub poster_path: Option<String>,
    pub backdrop_path: Option<String>,
}