8 lines
160 B
Python
8 lines
160 B
Python
#!/usr/bin/python3
|
|
|
|
from deezspot.models.track import Track
|
|
|
|
class Playlist:
|
|
def __init__(self) -> None:
|
|
self.tracks: list[Track] = []
|
|
self.zip_path = None |