mirror of
https://github.com/Xtao-Labs/Telegram-Custom-Artwork-Api.git
synced 2024-12-04 20:11:40 +00:00
5 lines
112 B
Python
5 lines
112 B
Python
class Music:
|
|
def __init__(self, name: str, album: str):
|
|
self.name = name
|
|
self.album = album
|