Files
2021-12-08 19:49:06 +01:00

23 lines
773 B
Python

class Tags:
def __init__(self):
self.track_name: str = None
self.artist: str = None
self.album_name: str = None
self.album_artist: str = None
self.track_number: int = None
self.total_number_of_tracks: int = None
self.disc_number: int = None
self.total_number_of_discs: int = None
self.genre: str = None
self.composer: str = None
self.isrc: str = None
self.copyright: str = None
self.label: str = None
self.upc: str = None
self.apple_store_catalog_id: int = None
self.album_title_id: int = None
self.playlist_id: int = None
self.date: str = None
self.cover_data: bytearray = None
self.cover_format: str = None