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

8 lines
143 B
Python
Raw Normal View History

2023-05-16 09:25:12 +00:00
from typing import Union
2023-05-14 04:29:29 +00:00
from pydantic import BaseModel
class SkillInfo(BaseModel):
2023-05-16 09:25:12 +00:00
index: int
config: Union[str, dict] = "NoConfig"