13 lines
282 B
Python
13 lines
282 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: UTF-8 -*-
|
||
|
|
||
|
class song(object):
|
||
|
""" Represents a song in all services. Data will be filled by the service itself"""
|
||
|
|
||
|
def __init__(self):
|
||
|
self.bitrate = 0
|
||
|
self.title = ""
|
||
|
self.artist = ""
|
||
|
self.duration = ""
|
||
|
self.size = 0
|
||
|
self.url = ""
|