ocarina/trunk/src/songInfo.py

15 lines
264 B
Python

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