dj-embe/entity/playlist.py

5 lines
120 B
Python
Raw Normal View History

2023-04-27 23:19:18 +00:00
class Playlist:
def __init__(self, title: str, url: str) -> None:
self.title = title
self.url = url