summaryrefslogtreecommitdiff
path: root/scripts/populate/structures.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/populate/structures.py')
-rw-r--r--scripts/populate/structures.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/populate/structures.py b/scripts/populate/structures.py
new file mode 100644
index 0000000..31feb1b
--- /dev/null
+++ b/scripts/populate/structures.py
@@ -0,0 +1,13 @@
+class song:
+ def __init__(self, name, lyrics):
+ self.name = name
+ self.lyrics = lyrics
+
+
+class album:
+ def __init__(self, name, cover, songs, artist_id, release=None):
+ self.name = name
+ self.cover = cover
+ self.songs = songs
+ self.artist = artist_id
+ self.release = release