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