7 lines
212 B
Python
7 lines
212 B
Python
class Item:
|
|
def __init__(self, name: str, category: str, price: float, photo_url: str):
|
|
self.name = name
|
|
self.category = category
|
|
self.price = price
|
|
self.photo_url = photo_url
|