mirror of
https://github.com/PaiGramTeam/genshin-wiki.git
synced 2024-11-21 14:48:17 +00:00
9 lines
132 B
Python
9 lines
132 B
Python
from utils.model import BaseModel
|
|
|
|
|
|
class ItemCount(BaseModel):
|
|
item_id: int
|
|
"""物品ID"""
|
|
count: int
|
|
"""数量"""
|