summaryrefslogtreecommitdiffstats
path: root/src/artist.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/artist.rs')
-rw-r--r--src/artist.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/artist.rs b/src/artist.rs
new file mode 100644
index 0000000..06b90e7
--- /dev/null
+++ b/src/artist.rs
@@ -0,0 +1,6 @@
+pub struct Artist {
+ id: Option<usize>,
+ name: String,
+ bio: Option<String>,
+ site: Option<String>,
+}