pub struct Artwork { /// artwork id id: Option, /// name of the artwork title: Option, /// description of the artwork description: Option, /// source url of the artwork url_source: Option, /// id of the artist artist_id: usize, /// ids of files files: Vec, }