summaryrefslogtreecommitdiffstats
path: root/src/artwork.rs
blob: 78b39afd6063ff81c7deab62696d1b59666b63c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub struct Artwork {
    /// artwork id
    id: Option<usize>,
    /// name of the artwork
    title: Option<String>,
    /// description of the artwork
    description: Option<String>,
    /// source url of the artwork
    url_source: Option<String>,
    /// id of the artist
    artist_id: usize,
    /// ids of files
    files: Vec<usize>,
}