8 lines
86 B
Python
8 lines
86 B
Python
|
|
from dataclasses import dataclass
|
||
|
|
|
||
|
|
|
||
|
|
@dataclass
|
||
|
|
class Item:
|
||
|
|
id: str
|
||
|
|
price: str
|