8 lines
137 B
Python
8 lines
137 B
Python
class Product:
|
|
|
|
def __init__(self):
|
|
self.id = 0
|
|
self.name = ""
|
|
self.price = 0.0
|
|
self.isshown = False
|