dj-embe/entity/playlist.py
2023-04-28 01:19:18 +02:00

5 lines
120 B
Python

class Playlist:
def __init__(self, title: str, url: str) -> None:
self.title = title
self.url = url