diff options
Diffstat (limited to 'scrap/structures.py')
-rw-r--r-- | scrap/structures.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scrap/structures.py b/scrap/structures.py new file mode 100644 index 0000000..b139489 --- /dev/null +++ b/scrap/structures.py @@ -0,0 +1,12 @@ +class song: + def __init__(self, name, lyrics): + self.name = name + self.lyrics = lyrics + + +class album: + def __init__(self, name, cover, songs, artist_id): + self.name = name + self.cover = cover + self.songs = songs + self.artist = artist_id |