mirror of
https://github.com/PaiGramTeam/genshin-wiki.git
synced 2024-11-22 07:07:40 +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
|
||
|
"""数量"""
|