genshin-wiki/model/other.py
2023-05-02 18:20:27 +08:00

9 lines
132 B
Python

from utils.model import BaseModel
class ItemCount(BaseModel):
item_id: int
"""物品ID"""
count: int
"""数量"""