1
2
3
4
5
6
7
8
9
use mangadex_api_types::MangaRelation;
use serde::Deserialize;

/// Response struct for the manga relation list endpoint (GET `/manga/:id/aggregate`).
#[derive(Clone, Debug, Deserialize, PartialEq)]
pub struct MangaRelationAttributes {
    pub relation: MangaRelation,
    pub version: u32,
}