summaryrefslogtreecommitdiff
path: root/scrap/structures.py
blob: b139489e36019c0e771d953a2612598c11d9c8bd (plain)
1
2
3
4
5
6
7
8
9
10
11
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