This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/parser/item.py

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