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