mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-19 05:57:45 +00:00
9327e69f9d
`model` → `models`
5 lines
142 B
Python
5 lines
142 B
Python
class ItemParamData:
|
|
def __init__(self, item_id: int = 0, count: int = 0):
|
|
self.id: int = item_id
|
|
self.count: int = count
|