python-genshin-artifact/python_genshin_artifact/models/skill.py
洛水居室 aa9049f851
🐛 Fix bug
2023-05-16 17:25:12 +08:00

8 lines
143 B
Python

from typing import Union
from pydantic import BaseModel
class SkillInfo(BaseModel):
index: int
config: Union[str, dict] = "NoConfig"