7 lines
140 B
Python
7 lines
140 B
Python
|
class Category:
|
||
|
'''
|
||
|
Constructor for a category object
|
||
|
'''
|
||
|
def __init__(self):
|
||
|
self.id = 0
|
||
|
self.name = ""
|