Telegram-Custom-Artwork-Api/defs.py
2022-09-25 22:45:27 +08:00

7 lines
240 B
Python

class Music:
def __init__(self, name: str, album: str, artist: str = ""):
self.name = name
self.album = album
self.artist = artist
self.name = f"{self.artist} - {self.name}" if self.artist else self.name