From b7a2265e9b29d8fa09f84f5213ef7f8ed3045ca6 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Wed, 13 Nov 2024 20:00:15 +0000 Subject: initial commit --- src/artwork.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/artwork.rs (limited to 'src/artwork.rs') diff --git a/src/artwork.rs b/src/artwork.rs new file mode 100644 index 0000000..78b39af --- /dev/null +++ b/src/artwork.rs @@ -0,0 +1,14 @@ +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, +} -- cgit