PamGram/model/gacha/common.py

5 lines
142 B
Python
Raw Normal View History

2022-07-26 10:07:31 +00:00
class ItemParamData:
def __init__(self, item_id: int = 0, count: int = 0):
self.id: int = item_id
self.count: int = count