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

15 lines
250 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 CharacterInfo(BaseModel):
name: str
level: int
ascend: bool
constellation: int
skill1: int
skill2: int
skill3: int
2023-05-16 09:25:12 +00:00
params: Union[str, dict] = "NoConfig"