python-genshin-artifact/python_genshin_artifact/models/buff.py

8 lines
104 B
Python
Raw Normal View History

2023-05-14 04:29:29 +00:00
from pydantic import BaseModel
class BuffInfo(BaseModel):
name: str
config: str
2023-05-14 04:46:48 +00:00
star: int