This repository has been archived on 2026-05-27. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rustypipe/src/client/response/music_new.rs
2022-12-02 00:03:50 +01:00

12 lines
278 B
Rust

use serde::Deserialize;
use super::{
music_item::{Grid, SingleColumnBrowseResult},
SectionList, Tab,
};
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct MusicNew {
pub contents: SingleColumnBrowseResult<Tab<SectionList<Grid>>>,
}