mirror of
https://github.com/xuthus83/LittlePaimon.git
synced 2025-04-12 23:29:37 +08:00
14 lines
209 B
Python
14 lines
209 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Item(BaseModel):
|
|
id: int
|
|
name: str
|
|
icon: Optional[str]
|
|
num: int
|
|
wiki_url: Optional[str]
|
|
level: int
|
|
icon_url: str
|