ocarina/trunk/songInfo.py

13 lines
229 B
Python

from duration import Duration
class SongInfo:
def __init__(self):
self.filename = ""
self.tags = dict()
self.playCount = 0
self.banned = False
self.length = None
self.title = ""
self.album = ""
self.artist = ""