Files
deezspot-spotizerr-dev/deezspot/models/playlist.py
cool.gitter.not.me.again.duh 089cb3dc5a first commit
2025-05-31 15:51:18 -06:00

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